Skip to content

Commit 2d56e74

Browse files
Updates
1 parent a1b7b8a commit 2d56e74

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

.github/workflows/Downgrade.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,11 @@ jobs:
3333
with:
3434
skip: Pkg,TOML,Statistics,LinearAlgebra,SparseArrays,InteractiveUtils
3535
julia_version: ${{ matrix.julia-version }}
36+
- name: Re-resolve manifest after downgrade
37+
shell: julia --color=yes --project=. {0}
38+
run: |
39+
using Pkg
40+
Pkg.resolve()
3641
- uses: julia-actions/julia-buildpkg@v1
3742
- uses: julia-actions/julia-runtest@v1
3843
with:

.github/workflows/DowngradeSublibraries.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ concurrency:
1818
jobs:
1919
test:
2020
runs-on: ubuntu-latest
21-
# Disabled: julia-downgrade-compat@v2 removes local path deps from manifest, see #3021
21+
# Workaround for julia-downgrade-compat@v2 dropping local path deps from Manifest.toml (#3021).
2222
if: true
2323
strategy:
2424
fail-fast: false
@@ -69,6 +69,11 @@ jobs:
6969
projects: ${{ matrix.project }}
7070
skip: Pkg,TOML,Statistics,LinearAlgebra,SparseArrays,InteractiveUtils,OrdinaryDiffEqCore,OrdinaryDiffEqNonlinearSolve,OrdinaryDiffEqDifferentiation
7171
julia_version: ${{ matrix.julia-version }}
72+
- name: Re-resolve manifest after downgrade
73+
shell: julia --color=yes --project=${{ matrix.project }} {0}
74+
run: |
75+
using Pkg
76+
Pkg.resolve()
7277
- uses: julia-actions/julia-buildpkg@v1
7378
with:
7479
project: ${{ matrix.project }}

0 commit comments

Comments
 (0)