-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Create Downgrade.yml * bump minimum version of MuladdMacro for compatibility with OrdinaryDiffEq * bump minimum compat of OrdinaryDiffEq.jl * bump minimum version of LinearSolve for compat with SciMLBase * Cancel redundant CI tests automatically * bump version of FastBroadcast for ArrayInterface compat * adapt test compat settings * bump compat for LinearSolve to include StaticArrays bugfixes * same for tests * update LinearSolve again to fix StaticArray issues
- Loading branch information
Showing
4 changed files
with
60 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
name: Downgrade | ||
|
||
on: | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
# Cancel redundant CI tests automatically | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
downgrade_test: | ||
if: "!contains(github.event.head_commit.message, 'skip ci')" | ||
name: Downgrade ${{ matrix.os }} - Julia ${{ matrix.version }} - ${{ github.event_name }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
version: | ||
- '1' | ||
- '1.9' | ||
os: | ||
- ubuntu-latest | ||
arch: | ||
- x64 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: julia-actions/setup-julia@v2 | ||
with: | ||
version: ${{ matrix.version }} | ||
arch: ${{ matrix.arch }} | ||
- run: julia -e 'using InteractiveUtils; versioninfo(verbose=true)' | ||
- uses: julia-actions/cache@v2 | ||
- uses: julia-actions/julia-downgrade-compat@v1 | ||
with: | ||
skip: LinearAlgebra,SparseArrays | ||
projects: ., test | ||
- uses: julia-actions/julia-buildpkg@v1 | ||
env: | ||
PYTHON: "" | ||
GKSwstype: "100" # for Plots/GR | ||
- name: Run tests without coverage | ||
uses: julia-actions/julia-runtest@v1 | ||
with: | ||
coverage: false | ||
env: | ||
PYTHON: "" | ||
GKSwstype: "100" # for Plots/GR |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters