Skip to content

Commit 9bd6be5

Browse files
Merge pull request #245 from ArnoStrouwen/downgrade
Downgrade CI
2 parents f46cdc0 + 21c0085 commit 9bd6be5

File tree

4 files changed

+36
-8
lines changed

4 files changed

+36
-8
lines changed

.github/workflows/CI.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ jobs:
1919
- All
2020
version:
2121
- '1'
22-
- '1.6'
2322
steps:
2423
- uses: actions/checkout@v4
2524
- uses: julia-actions/setup-julia@v1

.github/workflows/Downgrade.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Downgrade
2+
on:
3+
pull_request:
4+
branches:
5+
- main
6+
paths-ignore:
7+
- 'docs/**'
8+
push:
9+
branches:
10+
- main
11+
paths-ignore:
12+
- 'docs/**'
13+
jobs:
14+
test:
15+
runs-on: ubuntu-latest
16+
strategy:
17+
matrix:
18+
version: ['1']
19+
steps:
20+
- uses: actions/checkout@v4
21+
- uses: julia-actions/setup-julia@v1
22+
with:
23+
version: ${{ matrix.version }}
24+
- uses: cjdoris/julia-downgrade-compat-action@v1
25+
# if: ${{ matrix.version == '1.6' }}
26+
with:
27+
skip: Pkg,TOML
28+
- uses: julia-actions/julia-buildpkg@v1
29+
- uses: julia-actions/julia-runtest@v1

.github/workflows/Downstream.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
julia-version: [1,1.6]
17+
julia-version: [1]
1818
os: [ubuntu-latest]
1919
package:
2020
- {user: SciML, repo: ModelingToolkit.jl}

Project.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ Aqua = "0.8"
1616
ChainRulesCore = "1"
1717
ControlSystemsBase = "1"
1818
DataInterpolations = "4"
19-
DiffEqBase = "6"
19+
DiffEqBase = "6.103"
2020
IfElse = "0.1"
21-
LinearAlgebra = "1"
22-
ModelingToolkit = "8.67"
23-
OrdinaryDiffEq = "6"
21+
LinearAlgebra = "1.10"
22+
ModelingToolkit = "8.69"
23+
OrdinaryDiffEq = "6.33"
2424
SafeTestsets = "0.1"
25-
Symbolics = "4.9, 5"
25+
Symbolics = "5.2"
2626
Test = "1"
27-
julia = "1.6"
27+
julia = "1.10"
2828

2929
[extras]
3030
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"

0 commit comments

Comments
 (0)