2020-02-14 00:52:16 +01:00
|
|
|
/*
|
2024-09-06 18:56:18 +02:00
|
|
|
Copyright 2024 New Vector Ltd.
|
|
|
|
Copyright 2020, 2021 The Matrix.org Foundation C.I.C.
|
2020-02-14 00:52:16 +01:00
|
|
|
|
2024-09-06 18:56:18 +02:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2020-02-14 00:52:16 +01:00
|
|
|
*/
|
|
|
|
|
2024-10-30 19:06:03 +01:00
|
|
|
import type HakEnv from "../../scripts/hak/hakEnv.js";
|
|
|
|
import type { DependencyInfo } from "../../scripts/hak/dep.js";
|
2021-12-14 15:32:27 +01:00
|
|
|
|
2022-12-15 12:00:58 +01:00
|
|
|
export default async function (hakEnv: HakEnv, moduleInfo: DependencyInfo): Promise<void> {
|
2023-04-24 14:19:10 +02:00
|
|
|
const env = hakEnv.makeGypEnv();
|
2020-02-15 17:52:41 +01:00
|
|
|
|
2023-04-24 14:19:10 +02:00
|
|
|
if (!hakEnv.isHost()) {
|
|
|
|
env.CARGO_BUILD_TARGET = hakEnv.getTargetId();
|
2023-03-23 14:22:29 +01:00
|
|
|
}
|
2020-02-15 17:52:41 +01:00
|
|
|
|
2023-04-24 14:19:10 +02:00
|
|
|
console.log("Running yarn install");
|
2024-10-30 19:06:03 +01:00
|
|
|
await hakEnv.spawn("yarn", ["install"], {
|
|
|
|
cwd: moduleInfo.moduleBuildDir,
|
|
|
|
env,
|
|
|
|
shell: true,
|
2020-02-15 17:52:41 +01:00
|
|
|
});
|
|
|
|
|
2023-04-24 14:19:10 +02:00
|
|
|
const buildTarget = hakEnv.wantsStaticSqlCipher() ? "build-bundled" : "build";
|
2021-06-22 18:19:02 +02:00
|
|
|
|
2023-04-24 14:19:10 +02:00
|
|
|
console.log("Running yarn build");
|
2024-10-30 19:06:03 +01:00
|
|
|
await hakEnv.spawn("yarn", ["run", buildTarget], {
|
|
|
|
cwd: moduleInfo.moduleBuildDir,
|
|
|
|
env,
|
|
|
|
shell: true,
|
2020-02-14 00:52:16 +01:00
|
|
|
});
|
|
|
|
}
|