Skip to content

Commit 62fcfea

Browse files
authored
[CI] Use default architecture instead of forcing x64 (#2601)
This is in particular relevant on `macOS-latest`, where `default` would be `aarch64`: currently we're running the tests with x86-64 builds of Julia on Apple Silicon via Rosetta, which is slow, unsupported, and likely to fail.
1 parent 61b30db commit 62fcfea

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/CI.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,13 @@ jobs:
4848
- macOS-latest
4949
- windows-latest
5050
arch:
51-
- x64
51+
- default
5252
assertions:
5353
- false
5454
libEnzyme: [local, packaged]
5555
exclude:
5656
- os: windows-latest
57-
arch: x64
57+
arch: default
5858
libEnzyme: local
5959
include:
6060
- os: ubuntu-24.04
@@ -63,12 +63,12 @@ jobs:
6363
version: '1.10'
6464
assertions: false
6565
- os: ubuntu-24.04
66-
arch: x64
66+
arch: default
6767
libEnzyme: packaged
6868
version: '1.10'
6969
assertions: true
7070
- os: ubuntu-24.04
71-
arch: x64
71+
arch: default
7272
libEnzyme: packaged
7373
version: '1.11'
7474
assertions: true
@@ -157,7 +157,7 @@ jobs:
157157
os:
158158
- ubuntu-latest
159159
arch:
160-
- x64
160+
- default
161161
libEnzyme: [packaged]
162162
steps:
163163
- uses: actions/checkout@v5
@@ -211,7 +211,7 @@ jobs:
211211
os:
212212
- ubuntu-latest
213213
arch:
214-
- x64
214+
- default
215215
libEnzyme: [packaged]
216216
steps:
217217
- uses: actions/checkout@v5

0 commit comments

Comments
 (0)