Skip to content

Commit 6eb1418

Browse files
sethaxenclaude
andauthored
ci: drop x64 arch pin from CI matrix (#117)
macos-latest now resolves to an arm64-only image, and pinning arch: x64 makes setup-julia fail there. arch never actually varied across this matrix, so just drop it and let setup-julia pick the right one per runner. Co-authored-by: Claude <noreply@anthropic.com>
1 parent 531a5c0 commit 6eb1418

1 file changed

Lines changed: 1 addition & 7 deletions

File tree

.github/workflows/CI.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ concurrency:
1616

1717
jobs:
1818
test:
19-
name: ${{ matrix.downgrade && 'Downgrade / ' || '' }}Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
19+
name: ${{ matrix.downgrade && 'Downgrade / ' || '' }}Julia ${{ matrix.version }} - ${{ matrix.os }}
2020
runs-on: ${{ matrix.os }}
2121
strategy:
2222
fail-fast: false
@@ -28,29 +28,23 @@ jobs:
2828
- 'pre'
2929
os:
3030
- ubuntu-latest
31-
arch:
32-
- x64
3331
downgrade: [false]
3432
include:
3533
- version: '1'
3634
os: windows-latest
37-
arch: x64
3835
downgrade: false
3936
- version: '1'
4037
os: macOS-latest
41-
arch: x64
4238
downgrade: false
4339
- version: 'min'
4440
os: ubuntu-latest
45-
arch: x64
4641
downgrade: true
4742
steps:
4843
- uses: actions/checkout@v7
4944
- uses: julia-actions/setup-julia@v3
5045
id: setup-julia
5146
with:
5247
version: ${{ matrix.version }}
53-
arch: ${{ matrix.arch }}
5448
- uses: julia-actions/cache@v3
5549
- uses: julia-actions/julia-downgrade-compat@v2
5650
with:

0 commit comments

Comments
 (0)