Skip to content

Commit 6a96dd6

Browse files
Merge pull request #364 from SciML/add-sublibrary-downgrade-ci
Add downgrade CI for all sublibraries
2 parents 2a06e91 + 36d9c95 commit 6a96dd6

1 file changed

Lines changed: 43 additions & 0 deletions

File tree

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: Downgrade Sublibraries
2+
on:
3+
pull_request:
4+
branches:
5+
- master
6+
paths-ignore:
7+
- 'docs/**'
8+
push:
9+
branches:
10+
- master
11+
paths-ignore:
12+
- 'docs/**'
13+
jobs:
14+
test:
15+
runs-on: ubuntu-latest
16+
strategy:
17+
fail-fast: false
18+
matrix:
19+
downgrade_mode: ['alldeps']
20+
julia-version: ['1.10']
21+
project:
22+
- 'lib/BoundaryValueDiffEqAscher'
23+
- 'lib/BoundaryValueDiffEqCore'
24+
- 'lib/BoundaryValueDiffEqFIRK'
25+
- 'lib/BoundaryValueDiffEqMIRK'
26+
- 'lib/BoundaryValueDiffEqMIRKN'
27+
- 'lib/BoundaryValueDiffEqShooting'
28+
steps:
29+
- uses: actions/checkout@v4
30+
- uses: julia-actions/setup-julia@v2
31+
with:
32+
version: ${{ matrix.julia-version }}
33+
- uses: julia-actions/julia-downgrade-compat@v2
34+
with:
35+
project: ${{ matrix.project }}
36+
skip: Pkg,TOML
37+
- uses: julia-actions/julia-buildpkg@v1
38+
with:
39+
project: ${{ matrix.project }}
40+
- uses: julia-actions/julia-runtest@v1
41+
with:
42+
project: ${{ matrix.project }}
43+
ALLOW_RERESOLVE: false

0 commit comments

Comments
 (0)