Skip to content

Commit e93d425

Browse files
Fixed arch
1 parent 97ff25d commit e93d425

File tree

1 file changed

+16
-12
lines changed

1 file changed

+16
-12
lines changed

.github/workflows/CI.yml

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,29 +11,33 @@ on:
1111
- version-testing
1212
workflow_dispatch:
1313
concurrency:
14-
# Skip intermediate builds: always.
15-
# Cancel intermediate builds: only if it is a pull request build.
1614
group: ${{ github.workflow }}-${{ github.ref }}
1715
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
16+
1817
jobs:
1918
test:
2019
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
2120
runs-on: ${{ matrix.os }}
2221
timeout-minutes: 60
23-
permissions: # needed to allow julia-actions/cache to proactively delete old caches that it has created
22+
permissions:
2423
actions: write
2524
contents: read
2625
strategy:
2726
fail-fast: false
2827
matrix:
29-
version:
30-
- '1.10' # LTS - our current baseline with pinned packages
31-
- '1.11' # Current stable - migration target
32-
os:
33-
- ubuntu-latest
34-
- macOS-latest
35-
arch:
36-
- x64
28+
include:
29+
- version: '1.10'
30+
os: ubuntu-latest
31+
arch: aarch64
32+
- version: '1.11'
33+
os: ubuntu-latest
34+
arch: aarch64
35+
- version: '1.10'
36+
os: macos-latest
37+
arch: arm64
38+
- version: '1.11'
39+
os: macos-latest
40+
arch: arm64
3741
steps:
3842
- uses: actions/checkout@v4
3943
- uses: julia-actions/setup-julia@v2
@@ -48,4 +52,4 @@ jobs:
4852
with:
4953
files: lcov.info
5054
token: ${{ secrets.CODECOV_TOKEN }}
51-
fail_ci_if_error: false
55+
fail_ci_if_error: false

0 commit comments

Comments
 (0)