-
-
Couldn't load subscription status.
- Fork 56
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
It seems the new downgrade actions introduced in #656 does not dev the latest update in subpackages, see for example the latest commit: https://github.com/SciML/NonlinearSolve.jl/actions/runs/16824901990/job/47659000758. The original downgrade CIs are already doing the downgrade thing, those new actions seem redundant.
NonlinearSolve.jl/.github/workflows/CI_SCCNonlinearSolve.yml
Lines 70 to 96 in 29fe337
| downgrade: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| version: | |
| - "1.10" | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: julia-actions/setup-julia@v2 | |
| with: | |
| version: ${{ matrix.version }} | |
| - uses: julia-actions/julia-downgrade-compat@v2 | |
| with: | |
| skip: NonlinearSolveBase, SciMLJacobianOperators | |
| - name: "Install Dependencies and Run Tests" | |
| run: | | |
| import Pkg | |
| Pkg.Registry.update() | |
| # Install packages present in subdirectories | |
| dev_pks = Pkg.PackageSpec[] | |
| for path in ("lib/SciMLJacobianOperators", "lib/NonlinearSolveBase") | |
| push!(dev_pks, Pkg.PackageSpec(; path)) | |
| end | |
| Pkg.develop(dev_pks) | |
| Pkg.instantiate() | |
| Pkg.test(; coverage="user") |
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working