diff --git a/src/bazel/__tests__/bazel.test.ts b/src/bazel/__tests__/bazel.test.ts index 02e7d42b..6e022278 100644 --- a/src/bazel/__tests__/bazel.test.ts +++ b/src/bazel/__tests__/bazel.test.ts @@ -4,6 +4,12 @@ import { setupBazel } from "../bazel.js" jest.setTimeout(300000) describe("setup-bazel", () => { + if (process.platform === "linux" && process.arch === "arm64") { + it("should skip bazel tests on Linux arm64", () => { + expect(true).toBe(true) + }) + return + } it("should setup bazel", async () => { const installInfo = await setupBazel("", "", process.arch) diff --git a/src/infer/__tests__/infer.test.ts b/src/infer/__tests__/infer.test.ts index 014b7f0b..0b2cf211 100644 --- a/src/infer/__tests__/infer.test.ts +++ b/src/infer/__tests__/infer.test.ts @@ -8,8 +8,8 @@ import { setupInfer } from "../infer.js" jest.setTimeout(300000) describe("setup-infer", () => { - if (process.platform === "win32") { - it("should skip infer tests on windows", () => { + if (process.platform === "win32" || (process.platform === "linux" && process.arch === "arm64")) { + it("should skip infer tests on Windows and Linux arm64", () => { expect(true).toBe(true) }) return diff --git a/src/sccache/__tests__/sccache.test.ts b/src/sccache/__tests__/sccache.test.ts index 8deac310..ee6e3dac 100644 --- a/src/sccache/__tests__/sccache.test.ts +++ b/src/sccache/__tests__/sccache.test.ts @@ -4,6 +4,13 @@ import { setupSccache } from "../sccache.js" jest.setTimeout(300000) describe("setup-sccache", () => { + if (process.platform === "linux" && process.arch === "arm64") { + it("should skip sccache tests on Linux arm64", () => { + expect(true).toBe(true) + }) + return + } + it("should setup sccache", async () => { const installInfo = await setupSccache("", "", process.arch)