-
Notifications
You must be signed in to change notification settings - Fork 151
Create Downgrade.yml #1771
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Create Downgrade.yml #1771
Changes from all commits
Commits
Show all changes
44 commits
Select commit
Hold shift + click to select a range
3db98fb
Create Downgrade.yml
ranocha 40f87b6
bump lower compat bound of Setfield
ranocha 9c53c40
bump lower compat bound of HDF5.jl
ranocha 22b7ca5
bump lower compat bound of OffsetArrays.jl
ranocha 9ec0d1b
bump lower compat bound of Static.jl
ranocha 3ffa409
bump lower compat bound of HDF5.jl
ranocha c3bd8ed
bum lower compat bound of StartUpDG.jl
ranocha d6444b0
bum lower compat bound of LoopVectorization.jl
ranocha d59b9e4
bump lower compat bound of Static.jl
ranocha 3231fe3
bump lower compat bound for StrideArrays.jl
ranocha 3c67c4d
bump lower compat bound for Octavian.jl
ranocha 16a372b
bump lower compat bound of OffsetArrays.jl
ranocha f38059b
bump lower compat bound of LoopVectorization.jl
ranocha 8d36242
Revert "bump lower compat bound of LoopVectorization.jl"
ranocha e21aada
bump lower compat bound of Triangulate.jl
ranocha fa20e28
bump lower compat bound of ForwardDiff.jl
ranocha c70e221
bump lower compat bound of TimerOutputs.jl
ranocha 04dc3e2
bump lower compat bound of TimerOutputs.jl
ranocha f134e7a
Update Project.toml
jlchan 8a81714
format
ranocha c3ae96a
Removing FillArrays lower bound
jlchan ab72593
Bumping SciMLBase lower bound
jlchan c309b18
reverting SciMLBase lower bound
jlchan 7ba45d8
Bumping SciMLBase lower bound (again)
jlchan 8b6ff3b
bump lower compat bound of SummationByPartsOperators.jl
ranocha d050617
bump lower compat bound of FillArrays.jl
ranocha 6f9dd84
bump lower compat bound of DiffEqCallbacks.jl
ranocha 0775cba
Revert "bump lower compat bound of DiffEqCallbacks.jl"
ranocha 9d10883
Revert "bump lower compat bound of FillArrays.jl"
ranocha ce4cb3d
Revert "bump lower compat bound of SummationByPartsOperators.jl"
ranocha 84f3744
Revert "Bumping SciMLBase lower bound (again)"
ranocha db70fa1
Revert "reverting SciMLBase lower bound
"
ranocha cdd6316
Revert "Bumping SciMLBase lower bound"
ranocha c7eadba
Revert "Removing FillArrays lower bound"
ranocha af14c00
bump lower compat bound of StructArrays.jl
ranocha d9d9fb1
bump lower compat bound of StructArrays.jl
ranocha 588c3fa
bump lower compat bound of Static.jl
ranocha 501259e
Merge branch 'main' into ranocha-patch-1
ranocha 8d54a46
bump lower compat bound of StructArrays.jl
ranocha 41b5605
bump lower compat bound of StructArrays.jl
ranocha 28cd8dc
Revert "bump lower compat bound of StructArrays.jl"
ranocha 43d8cc3
Revert "bump lower compat bound of StructArrays.jl"
ranocha 6395c0b
Merge branch 'main' into ranocha-patch-1
ranocha 0cf4b0e
bump lower compat bound of StaticArrays.jl
ranocha File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,86 @@ | ||
| name: Downgrade | ||
|
|
||
| on: | ||
| pull_request: | ||
| paths-ignore: | ||
| - 'AUTHORS.md' | ||
| - 'CITATION.bib' | ||
| - 'CONTRIBUTING.md' | ||
| - 'LICENSE.md' | ||
| - 'NEWS.md' | ||
| - 'README.md' | ||
| - '.zenodo.json' | ||
| - '.github/workflows/benchmark.yml' | ||
| - '.github/workflows/CompatHelper.yml' | ||
| - '.github/workflows/TagBot.yml' | ||
| - 'benchmark/**' | ||
| - 'docs/**' | ||
| - 'utils/**' | ||
| 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')" | ||
| # We could also include the Julia version as in | ||
| # name: ${{ matrix.trixi_test }} - ${{ matrix.os }} - Julia ${{ matrix.version }} - ${{ matrix.arch }} - ${{ github.event_name }} | ||
| # to be more specific. However, that requires us updating the required CI tests whenever we update Julia. | ||
| name: Downgrade ${{ matrix.trixi_test }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} | ||
| runs-on: ${{ matrix.os }} | ||
| strategy: | ||
| fail-fast: false | ||
| matrix: | ||
| version: | ||
| - '1.9' | ||
| # - '~1.9.0-0' # including development versions | ||
| # - 'nightly' | ||
| os: | ||
| - ubuntu-latest | ||
| arch: | ||
| - x64 | ||
| trixi_test: | ||
| # - tree_part1 | ||
| # - tree_part2 | ||
| # - tree_part3 | ||
| # - tree_part4 | ||
| # - tree_part5 | ||
| # - tree_part6 | ||
| # - structured | ||
| # - p4est_part1 | ||
| # - p4est_part2 | ||
| # - t8code_part1 | ||
| # - unstructured_dgmulti | ||
| # - parabolic | ||
| # - paper_self_gravitating_gas_dynamics | ||
| # - misc_part1 | ||
| # - misc_part2 | ||
| # - performance_specializations_part1 | ||
| # - performance_specializations_part2 | ||
| # - mpi | ||
| - threaded | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - uses: julia-actions/setup-julia@v1 | ||
| with: | ||
| version: ${{ matrix.version }} | ||
| arch: ${{ matrix.arch }} | ||
| - run: julia -e 'using InteractiveUtils; versioninfo(verbose=true)' | ||
| - uses: julia-actions/cache@v1 | ||
| - uses: cjdoris/julia-downgrade-compat-action@v1 | ||
| with: | ||
| skip: LinearAlgebra,Printf,SparseArrays | ||
| - uses: julia-actions/julia-buildpkg@v1 | ||
| env: | ||
| PYTHON: "" | ||
| - name: Run tests without coverage | ||
| uses: julia-actions/julia-runtest@v1 | ||
| with: | ||
| coverage: false | ||
| env: | ||
| PYTHON: "" | ||
| TRIXI_TEST: ${{ matrix.trixi_test }} | ||
|
|
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.