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
|
|
|
*/
|
|
|
|
|
2022-12-15 12:00:58 +01:00
|
|
|
import childProcess from "child_process";
|
2020-02-15 17:52:41 +01:00
|
|
|
|
2022-12-15 12:00:58 +01:00
|
|
|
import HakEnv from "../../scripts/hak/hakEnv";
|
|
|
|
import { DependencyInfo } from "../../scripts/hak/dep";
|
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");
|
2021-12-14 15:32:27 +01:00
|
|
|
await new Promise<void>((resolve, reject) => {
|
2024-01-02 19:12:16 +01:00
|
|
|
const proc = childProcess.spawn("yarn" + (hakEnv.isWin() ? ".cmd" : ""), ["install"], {
|
|
|
|
cwd: moduleInfo.moduleBuildDir,
|
|
|
|
env,
|
|
|
|
shell: true,
|
|
|
|
stdio: "inherit",
|
|
|
|
});
|
2022-12-15 12:00:58 +01:00
|
|
|
proc.on("exit", (code) => {
|
2020-02-15 17:52:41 +01:00
|
|
|
code ? reject(code) : resolve();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
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");
|
2021-12-14 15:32:27 +01:00
|
|
|
await new Promise<void>((resolve, reject) => {
|
2024-01-02 19:12:16 +01:00
|
|
|
const proc = childProcess.spawn("yarn" + (hakEnv.isWin() ? ".cmd" : ""), ["run", buildTarget], {
|
|
|
|
cwd: moduleInfo.moduleBuildDir,
|
|
|
|
env,
|
|
|
|
shell: true,
|
|
|
|
stdio: "inherit",
|
|
|
|
});
|
2022-12-15 12:00:58 +01:00
|
|
|
proc.on("exit", (code) => {
|
2020-02-14 00:52:16 +01:00
|
|
|
code ? reject(code) : resolve();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|