Skip to content

Commit b2926f5

Browse files
authored
run ci with arm (#152)
1 parent bfaf2b7 commit b2926f5

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

.github/workflows/CI.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,25 +12,26 @@ concurrency:
1212
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
1313
jobs:
1414
test:
15-
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
16-
runs-on: ${{ matrix.os }}
15+
name: Julia ${{ matrix.version }} - ${{ matrix.platform.os }} - ${{ matrix.platform.arch }} - ${{ github.event_name }}
16+
runs-on: ${{ matrix.platform.os }}
1717
strategy:
1818
fail-fast: false
1919
matrix:
20+
platform:
21+
- os: ubuntu-latest
22+
arch: x64
23+
- os: ubuntu-24.04-arm
24+
arch: aarch64
2025
version:
2126
- '1.9'
2227
- '1'
2328
- 'nightly'
24-
os:
25-
- ubuntu-latest
26-
arch:
27-
- x64
2829
steps:
2930
- uses: actions/checkout@v4
3031
- uses: julia-actions/setup-julia@v2
3132
with:
3233
version: ${{ matrix.version }}
33-
arch: ${{ matrix.arch }}
34+
arch: ${{ matrix.platform.arch }}
3435
- uses: julia-actions/cache@v2
3536
- uses: julia-actions/julia-buildpkg@v1
3637
- uses: julia-actions/julia-runtest@v1

0 commit comments

Comments
 (0)