Some checks failed
Build and Test / fetch (push) Failing after 23s
Static Analysis / i18n Check (push) Failing after 1s
Build and Test / Windows (arm64) (push) Has been skipped
Build and Test / Windows (ia32) (push) Has been skipped
Build and Test / Windows (x64) (push) Has been skipped
Build and Test / Linux (amd64) (sqlcipher: static) (push) Has been skipped
Build and Test / Linux (amd64) (sqlcipher: system) (push) Has been skipped
Build and Test / Linux (arm64) (sqlcipher: static) (push) Has been skipped
Build and Test / Linux (arm64) (sqlcipher: system) (push) Has been skipped
Build and Test / macOS (push) Has been skipped
Build and Test / tests-done (push) Has been cancelled
Static Analysis / Typescript Syntax Check (push) Has been cancelled
Static Analysis / ESLint (push) Has been cancelled
Static Analysis / Workflow Lint (push) Has been cancelled
Static Analysis / Analyse Dead Code (push) Has been cancelled
Close stale PRs / close (push) Has been cancelled
Build and Deploy / prepare (push) Failing after 19s
Build and Deploy / ${{ needs.prepare.outputs.deploy == 'true' && 'Deploy' || 'Deploy (dry-run)' }} (push) Blocked by required conditions
Build and Deploy / Deploy builds to ESS (push) Blocked by required conditions
Build and Deploy / Windows arm64 (push) Has been skipped
Build and Deploy / Windows x64 (push) Has been skipped
Build and Deploy / macOS (push) Has been skipped
Build and Deploy / Linux amd64 (sqlcipher static) (push) Has been skipped
Build and Deploy / Linux arm64 (sqlcipher static) (push) Has been skipped
36 lines
1.1 KiB
TypeScript
36 lines
1.1 KiB
TypeScript
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
Copyright 2020, 2021 The Matrix.org Foundation C.I.C.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
|
|
Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
import type HakEnv from "../../scripts/hak/hakEnv.js";
|
|
import type { DependencyInfo } from "../../scripts/hak/dep.js";
|
|
|
|
export default async function (hakEnv: HakEnv, moduleInfo: DependencyInfo): Promise<void> {
|
|
const env = hakEnv.makeGypEnv();
|
|
|
|
if (!hakEnv.isHost()) {
|
|
env.CARGO_BUILD_TARGET = hakEnv.getTargetId();
|
|
}
|
|
|
|
console.log("Running yarn install");
|
|
await hakEnv.spawn("yarn", ["install"], {
|
|
cwd: moduleInfo.moduleBuildDir,
|
|
env,
|
|
shell: true,
|
|
});
|
|
|
|
//const buildTarget = hakEnv.wantsStaticSqlCipher() ? "build-bundled" : "build"; // no build-bundled defined?
|
|
const buildTarget = hakEnv.wantsStaticSqlCipher() ? "build" : "build";
|
|
|
|
console.log("Running yarn build");
|
|
await hakEnv.spawn("yarn", ["run", buildTarget], {
|
|
cwd: moduleInfo.moduleBuildDir,
|
|
env,
|
|
shell: true,
|
|
});
|
|
}
|