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 @@ -18,7 +18,7 @@ jobs:
run: which julia
continue-on-error: true
- name: Install Julia, but only if it is not already available in the PATH
uses: julia-actions/setup-julia@v2
uses: julia-actions/setup-julia@v3
with:
version: '1'
arch: ${{ runner.arch }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Enzyme.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
path: downstream

# install Julia
- uses: julia-actions/setup-julia@v2
- uses: julia-actions/setup-julia@v3
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
Expand Down
22 changes: 10 additions & 12 deletions .github/workflows/Test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,52 +16,50 @@ concurrency:

jobs:
binary_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: 15
strategy:
fail-fast: false
matrix:
version: ['1.10', '1.11', '1.12', '1.13-nightly', 'nightly']
os: ['ubuntu-latest', 'macOS-latest', 'windows-latest']
arch: [x64]
os: ['ubuntu-latest', 'ubuntu-24.04-arm', 'macOS-latest', 'windows-latest']
llvm_args: ['']
include:
# starting with Julia 1.10, we can enable opaque pointers
# on Julia 1.10 and 1.11, also test non-default opaque pointers
- version: '1.10'
os: 'ubuntu-latest'
arch: 'x64'
llvm_args: '--opaque-pointers'
- version: '1.10'
os: 'ubuntu-24.04-arm'
llvm_args: '--opaque-pointers'
- version: '1.10'
os: 'macOS-latest'
arch: 'x64'
llvm_args: '--opaque-pointers'
- version: '1.10'
os: 'windows-latest'
arch: 'x64'
llvm_args: '--opaque-pointers'
- version: '1.11'
os: 'ubuntu-latest'
arch: 'x64'
llvm_args: '--opaque-pointers'
- version: '1.11'
os: 'ubuntu-24.04-arm'
llvm_args: '--opaque-pointers'
- version: '1.11'
os: 'macOS-latest'
arch: 'x64'
llvm_args: '--opaque-pointers'
- version: '1.11'
os: 'windows-latest'
arch: 'x64'
llvm_args: '--opaque-pointers'
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0 # build_ci.jl needs to be able to inspect the git log

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

# set-up packages
- uses: julia-actions/cache@v3
Expand Down
17 changes: 4 additions & 13 deletions .github/workflows/TestAsserts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,22 +27,12 @@ jobs:
strategy:
fail-fast: false
matrix:
version: ['1.11', '1.12', '1.13', 'master']
llvm_args: ['']
include:
- version: 'master'
build: 'x86_64-linux-gnuassert'
llvm_args: ''
# on Julia 1.11, also test non-default opaque pointers
- version: '1.11'
build: 'x86_64-linux-gnuassert'
llvm_args: '--opaque-pointers'
- version: '1.11'
build: 'x86_64-linux-gnuassert'
llvm_args: ''
- version: '1.12'
build: 'x86_64-linux-gnuassert'
llvm_args: ''
- version: '1.13'
build: 'x86_64-linux-gnuassert'
llvm_args: ''
steps:
- name: Report in-progress
uses: actions/github-script@v8
Expand Down Expand Up @@ -126,6 +116,7 @@ jobs:
{version: '1.11', llvm_args: '--opaque-pointers'},
{version: '1.11', llvm_args: ''},
{version: '1.12', llvm_args: ''},
{version: '1.13', llvm_args: ''},
];
await Promise.all(entries.map(({version, llvm_args}) =>
github.rest.checks.create({
Expand Down
Loading