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.
  • Loading branch information
stemann committed Nov 2, 2024
1 parent e6385d9 commit e1ded80
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 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
14 changes: 11 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,30 @@ jobs:
fail-fast: false
matrix:
version:
- '1.6' # Previous LTS version
- '1.10' # Current LTS version
- '1' # Current stable version
os:
- macOS-latest
- ubuntu-latest
- windows-latest
arch:
- x64
include:
# macOS on aarch64
- os: macOS-latest
arch: aarch64
version: '1.6'
- os: macOS-latest
arch: aarch64
version: '1.10'
- os: macOS-latest
arch: aarch64
version: '1'

- os: ubuntu-latest
arch: x86
version: '1'
- os: ubuntu-latest
arch: x64
version: '1.6'
- os: ubuntu-latest
arch: x64
version: 'nightly'
Expand Down

0 comments on commit e1ded80

Please sign in to comment.