Skip to content

Commit

Permalink
Merge pull request #153 from ArnoStrouwen/downgrade
Browse files Browse the repository at this point in the history
downgrade CI
  • Loading branch information
ChrisRackauckas authored Dec 22, 2023
2 parents 0fedb6d + 2648b33 commit 6a1ac8a
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 9 deletions.
1 change: 0 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ jobs:
- Core
version:
- '1'
- '1.6'
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
Expand Down
31 changes: 31 additions & 0 deletions .github/workflows/Downgrade.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Downgrade
on:
pull_request:
branches:
- master
paths-ignore:
- 'docs/**'
push:
branches:
- master
paths-ignore:
- 'docs/**'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
version: ['1']
group:
- Core
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
- uses: cjdoris/julia-downgrade-compat-action@v1
# if: ${{ matrix.version == '1.6' }}
with:
skip: Pkg,TOML
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
2 changes: 1 addition & 1 deletion .github/workflows/Downstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
julia-version: [1,1.6]
julia-version: [1]
os: [ubuntu-latest]
package:
- {user: SciML, repo: OrdinaryDiffEq.jl, group: InterfaceI}
Expand Down
14 changes: 7 additions & 7 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,20 +17,20 @@ libblastrampoline_jll = "8e850b90-86db-534c-a0d3-1478176c7d93"
[compat]
Adapt = "3.4.0, 4"
Aqua = "0.8"
ArrayInterface = "7"
ForwardDiff = "0.10"
ArrayInterface = "7.1"
ForwardDiff = "0.10.13"
GPUArraysCore = "0.1"
GenericSchur = "0.5.3"
LinearAlgebra = "1"
LinearAlgebra = "1.9"
Pkg = "1"
PrecompileTools = "1"
Printf = "1"
Printf = "1.9"
Random = "1"
SafeTestsets = "0.1"
SparseArrays = "1"
StaticArrays = "1"
SparseArrays = "1.9"
StaticArrays = "1.2"
Test = "1"
julia = "1.6"
julia = "1.9"

[extras]
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
Expand Down

0 comments on commit 6a1ac8a

Please sign in to comment.