Skip to content

Commit

Permalink
CI: Expanded testing to include julia LTS versions
Browse files Browse the repository at this point in the history
Expanded testing to include both current, and previous LTS versions, in addition to the current stable version - on all 64-bit tier 1 CPU archs. Also added macOS (not just macOS on aarch64 using current stable version).

Also, fixed invalidations by using julia 1.10.

Also, fixes test target for (ubuntu-latest, x86, 1), as the arch was not passed to setup-julia - so tests were not running on a 32-bit Julia.
  • Loading branch information
stemann committed Nov 2, 2024
1 parent e6385d9 commit f90ceb2
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Invalidations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
steps:
- uses: julia-actions/setup-julia@v2
with:
version: '1'
version: '1.10'
- uses: actions/checkout@v4
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-buildpkg@v1
Expand Down
21 changes: 16 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,21 +21,31 @@ jobs:
matrix:
version:
- '1' # Current stable version
- lts # Current LTS version
- '1.6' # Previous LTS version
os:
- macOS-13 # x64 runner
- macOS-latest # aarch64 runner
- ubuntu-latest
- windows-latest
arch:
- aarch64
- x64
include:
exclude:
- os: macOS-13
arch: aarch64
- os: macOS-latest
arch: x64
- os: macOS-latest
version: '1.6'
- os: ubuntu-latest
arch: aarch64
version: '1'
- os: windows-latest
arch: aarch64
include:
- os: ubuntu-latest
arch: x86
version: '1'
- os: ubuntu-latest
arch: x64
version: '1.6'
- os: ubuntu-latest
arch: x64
version: 'nightly'
Expand All @@ -53,6 +63,7 @@ jobs:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@latest
with:
arch: ${{ matrix.arch }}
version: ${{ matrix.version }}
show-versioninfo: true
- uses: julia-actions/cache@v2
Expand Down

0 comments on commit f90ceb2

Please sign in to comment.