diff options
author | Matt Mastracci <matthew@mastracci.com> | 2024-02-08 09:50:11 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-08 16:50:11 +0000 |
commit | de78e4ef1ea723398f138d798294d021e78a25b4 (patch) | |
tree | c58009eefcaef763d9f2e362c6df7174ce64ff32 | |
parent | ed34429a5f0f1e21f171f06ab1c3eb513127f5df (diff) |
chore: temporarily disable ARM64 (#22350)
While we figure out the build breakage.
-rwxr-xr-x | .github/workflows/ci.generate.ts | 18 | ||||
-rw-r--r-- | .github/workflows/ci.yml | 11 |
2 files changed, 9 insertions, 20 deletions
diff --git a/.github/workflows/ci.generate.ts b/.github/workflows/ci.generate.ts index 89cd58698..1fcdf9816 100755 --- a/.github/workflows/ci.generate.ts +++ b/.github/workflows/ci.generate.ts @@ -411,15 +411,15 @@ const ci = { job: "lint", profile: "debug", }, { - ...Runners.linuxArm, - job: "test", - profile: "debug", - }, { - ...Runners.linuxArm, - job: "test", - profile: "release", - use_sysroot: true, - }, { + // ...Runners.linuxArm, + // job: "test", + // profile: "debug", + // }, { + // ...Runners.linuxArm, + // job: "test", + // profile: "release", + // use_sysroot: true, + // }, { ...Runners.macosX86, job: "lint", profile: "debug", diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9c89ef6ee..0dccd9469 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -111,17 +111,6 @@ jobs: runner: ubuntu-22.04 job: lint profile: debug - - os: linux - arch: aarch64 - runner: ubicloud-standard-16-arm - job: test - profile: debug - - os: linux - arch: aarch64 - runner: ubicloud-standard-16-arm - job: test - profile: release - use_sysroot: true - os: macos arch: x86_64 runner: macos-12 |