Skip to content

Commit 03b0eff

Browse files
authored
chore: Disable arm64-windows (#1406)
Builds for arm64-windows are failing and auditable is not available for arm64-linux also. Skip installing auditable on arm64-linux
1 parent a54dd88 commit 03b0eff

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
env:
5959
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6060
steps:
61-
- uses: actions/checkout@v4
61+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
6262
with:
6363
persist-credentials: false
6464
submodules: recursive
@@ -143,6 +143,7 @@ jobs:
143143
path: target/distrib/
144144
merge-multiple: true
145145
- name: Install cargo-auditable
146+
if: ${{ matrix.runner }} != 'ubuntu-24.04-arm' && ${{ matrix.runner }} != 'ubuntu-22.04-arm'
146147
run: ${{ matrix.install_cargo_auditable.run }}
147148
- name: Install dependencies
148149
run: |

dist-workspace.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ installers = ["shell"]
1414
# Whether to embed dependency information using cargo-auditable
1515
cargo-auditable = true
1616
# Target platforms to build apps for (Rust target-triple syntax)
17-
targets = ["aarch64-apple-darwin", "aarch64-unknown-linux-gnu", "aarch64-pc-windows-msvc", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-unknown-linux-musl", "x86_64-pc-windows-msvc"]
17+
targets = ["aarch64-apple-darwin", "aarch64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-unknown-linux-musl", "x86_64-pc-windows-msvc"]
1818
# Which actions to run on pull requests
1919
pr-run-mode = "plan"
2020
# Whether dist should create a Github Release or use an existing draft

0 commit comments

Comments
 (0)