Skip to content

chore: test on Julia 1.12 with JET 0.10 #841

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
22 changes: 16 additions & 6 deletions .github/workflows/Test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,12 @@ jobs:
actions: write
contents: read
strategy:
fail-fast: true # TODO: toggle
fail-fast: false # TODO: toggle
matrix:
version:
- "1.10"
- "lts"
- "1"
- "pre"
group:
- Core/Internals
- Back/DifferentiateWith
Expand All @@ -53,9 +54,13 @@ jobs:
- Down/Lux
skip_lts:
- ${{ github.event.pull_request.draft }}
skip_pre:
- ${{ github.event.pull_request.draft }}
exclude:
- skip_lts: true
version: "1.10"
version: "lts"
- skip_pre: true
version: "pre"
- version: "1"
group: Back/ChainRules
env:
Expand Down Expand Up @@ -97,21 +102,26 @@ jobs:
actions: write
contents: read
strategy:
fail-fast: true
fail-fast: false
matrix:
version:
- "1.10"
- "lts"
- "1"
- "pre"
group:
- Formalities
- Zero
- Standard
- Weird
skip_lts:
- ${{ github.event.pull_request.draft }}
skip_pre:
- ${{ github.event.pull_request.draft }}
exclude:
- skip_lts: true
version: "1.10"
version: "lts"
- skip_pre: true
version: "pre"
env:
JULIA_DIT_TEST_GROUP: ${{ matrix.group }}
JULIA_DI_PR_DRAFT: ${{ github.event.pull_request.draft }}
Expand Down
2 changes: 1 addition & 1 deletion DifferentiationInterface/test/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ ComponentArrays = "0.15.27"
DataFrames = "1.7.0"
Dates = "1"
ExplicitImports = "1.10.1"
JET = "0.9"
JET = "0.9,0.10"
JLArrays = "0.2.0"
Pkg = "1"
Random = "1"
Expand Down
2 changes: 1 addition & 1 deletion DifferentiationInterfaceTest/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ FiniteDifferences = "0.12"
Flux = "0.16"
ForwardDiff = "0.10.36,1"
Functors = "0.4, 0.5"
JET = "0.4 - 0.8, 0.9"
JET = "0.9,0.10"
JLArrays = "0.1, 0.2"
LinearAlgebra = "1"
Lux = "1.1.0"
Expand Down
Loading