Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/CompatHelper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
run : |
version=$(grep '^julia = ' Project.toml | grep -o '".*"' | cut -d '"' -f2)
echo "::set-output name=version::$version"
- uses: julia-actions/setup-julia@v2
- uses: julia-actions/setup-julia@v3
with:
version: ${{ steps.julia_compat.outputs.version }}
- name: Install CompatHelper
Expand Down
29 changes: 2 additions & 27 deletions .github/workflows/Test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,79 +13,55 @@ concurrency:

jobs:
release_test:
name: Julia ${{ matrix.version }} ${{ matrix.llvm_args }} - ${{ matrix.os }} - ${{ matrix.arch }}
name: Julia ${{ matrix.version }} ${{ matrix.llvm_args }} - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
version: ['1.10', '1.11', '1.12', '1.13-nightly', 'nightly']
os: [ubuntu-24.04, ubuntu-24.04-arm, macOS-15, macOS-15-intel, windows-2025]
arch: [x64, arm64]
llvm_args: ['']
exclude:
# unsupported combinations
- os: ubuntu-24.04
arch: arm64
- os: windows-2025
arch: arm64
- os: ubuntu-24.04-arm
arch: x64
- os: macOS-15
arch: x64
- os: macOS-15-intel
arch: arm64
include:
# starting with Julia 1.10, we can enable opaque pointers
# from Julia 1.12 on, this is the default.
- version: '1.10'
os: 'ubuntu-24.04'
arch: 'x64'
llvm_args: '--opaque-pointers'
- version: '1.10'
os: 'ubuntu-24.04-arm'
arch: 'arm64'
llvm_args: '--opaque-pointers'
- version: '1.10'
os: 'macOS-15'
arch: 'arm64'
llvm_args: '--opaque-pointers'
- version: '1.10'
os: 'macOS-15-intel'
arch: 'x64'
llvm_args: '--opaque-pointers'
- version: '1.10'
os: 'windows-2025'
arch: 'x64'
llvm_args: '--opaque-pointers'
- version: '1.11'
os: 'ubuntu-24.04'
arch: 'x64'
llvm_args: '--opaque-pointers'
- version: '1.11'
os: 'ubuntu-24.04-arm'
arch: 'arm64'
llvm_args: '--opaque-pointers'
- version: '1.11'
os: 'macOS-15'
arch: 'arm64'
llvm_args: '--opaque-pointers'
- version: '1.11'
os: 'macOS-15-intel'
arch: 'x64'
llvm_args: '--opaque-pointers'
- version: '1.11'
os: 'windows-2025'
arch: 'x64'
llvm_args: '--opaque-pointers'
steps:
- uses: actions/checkout@v6

- name: Install Julia
uses: julia-actions/setup-julia@v2
uses: julia-actions/setup-julia@v3
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}

- name: Set-up cache
uses: julia-actions/cache@v3
Expand Down Expand Up @@ -115,7 +91,6 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-24.04]
arch: [x64]
llvm_args: ['']
include:
- version: '1.12'
Expand Down
Loading