File tree Expand file tree Collapse file tree 1 file changed +16
-12
lines changed
Expand file tree Collapse file tree 1 file changed +16
-12
lines changed Original file line number Diff line number Diff line change 1111 - version-testing
1212 workflow_dispatch :
1313concurrency :
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+
1817jobs :
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
4852 with :
4953 files : lcov.info
5054 token : ${{ secrets.CODECOV_TOKEN }}
51- fail_ci_if_error : false
55+ fail_ci_if_error : false
You can’t perform that action at this time.
0 commit comments