Skip to content

Commit dc72a8a

Browse files
committed
Fix arm
1 parent 5aa1a47 commit dc72a8a

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/release-binaries-all.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
matrix:
8484
runs-on:
8585
- ubuntu-22.04
86-
- ubuntu-22.04-arm
86+
- depot-ubuntu-22.04-arm-small
8787
- windows-2022
8888
- macos-13
8989
- macos-14

.github/workflows/release-binaries.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ on:
1818
type: choice
1919
options:
2020
- ubuntu-22.04
21+
- depot-ubuntu-22.04-arm-small
2122
- windows-2022
2223
- macos-13
2324
- macos-14
@@ -151,10 +152,14 @@ jobs:
151152
echo "target-cmake-flags=$target_cmake_flags" >> $GITHUB_OUTPUT
152153
echo "build-flang=$build_flang" >> $GITHUB_OUTPUT
153154
case "${{ inputs.runs-on }}" in
154-
ubuntu-22.04*)
155+
ubuntu-22.04)
155156
runs_on="depot-${{ inputs.runs-on }}-16"
156157
multi_stage="false"
157158
;;
159+
depot-ubuntu-22.04-arm-small)
160+
runs_on="depot-ubuntu-22.04-arm-16"
161+
multi_stage="false"
162+
;;
158163
*)
159164
runs_on="${{ inputs.runs-on }}"
160165
multi_stage="true"

0 commit comments

Comments
 (0)