-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add downgrade CI * pin DelimitedFiles specify DelimitedFiles * JLD2 compat to 0.4.28 for compat with julia 1.9 * update compats chore: Update Distances, DocStringExtensions, FFTW, JLD2, OrderedCollections, and Symbolics dependencies update symbolics compat update Latexify update HomotopyContinuation update compat HomotopyContinuation again Update HomotopyContinuation dependency to version 2.9 Make Plots work withLatexify update DSP dependency to version 0.8 and add Compat compat rmove Compat Update DSP dependency to version 0.7.5 Update DSP dependency to version 0.7.9 chore: Update Peaks dependency to version 0.5 Update ModelingToolkit dependency to version 9.10 Update ModelingToolkit dependency to version 9.15 Update ModelingToolkit dependency to version 9.17 chore: Update SteadyStateDiffEq dependency to version 2 chore: Update OrdinaryDiffEq and Symbolics dependencies * update github actions * Update default value for lookback input in TagBot workflow
- Loading branch information
Showing
5 changed files
with
65 additions
and
22 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
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,43 @@ | ||
name: Downgrade | ||
on: | ||
push: | ||
tags: | ||
- '*' | ||
branches: | ||
- 'master' | ||
pull_request: | ||
branches: | ||
- 'master' | ||
jobs: | ||
test: | ||
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} | ||
runs-on: ${{ matrix.os }} | ||
timeout-minutes: 60 | ||
permissions: # needed to allow julia-actions/cache to proactively delete old caches that it has created | ||
actions: write | ||
contents: read | ||
strategy: | ||
matrix: | ||
version: | ||
- '1.10' | ||
# - '1.9' | ||
# - 'nightly' | ||
os: | ||
- ubuntu-latest | ||
arch: | ||
- x64 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
persist-credentials: false | ||
- uses: julia-actions/setup-julia@v2 | ||
with: | ||
show-versioninfo: true | ||
version: ${{ matrix.version }} | ||
arch: ${{ matrix.arch }} | ||
- uses: julia-actions/julia-downgrade-compat@v1 | ||
with: | ||
skip: Pkg,TOML | ||
- uses: julia-actions/cache@v2 | ||
- uses: julia-actions/julia-buildpkg@v1 | ||
- uses: julia-actions/julia-runtest@v1 |
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