CI: serialize precompile workers for python-using groups #951
Workflow file for this run
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
| name: Downgrade | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| paths-ignore: | |
| - 'docs/**' | |
| push: | |
| branches: | |
| - master | |
| paths-ignore: | |
| - 'docs/**' | |
| jobs: | |
| test: | |
| if: false # Disabled: see https://github.com/SciML/Optimization.jl/issues/1156 | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| downgrade_mode: ['alldeps'] | |
| julia-version: ['1.10'] | |
| group: ['Core'] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: julia-actions/setup-julia@v2 | |
| with: | |
| version: ${{ matrix.julia-version }} | |
| - uses: julia-actions/julia-downgrade-compat@v2 | |
| with: | |
| # SymbolicAnalysis skipped: 0.3.x doesn't support Symbolics 7 (required by ModelingToolkit 11) | |
| skip: Pkg,TOML,LinearAlgebra,Logging,Printf,Random,SparseArrays,Test,SymbolicAnalysis | |
| - uses: julia-actions/julia-buildpkg@v1 | |
| - uses: julia-actions/julia-runtest@v1 | |
| with: | |
| ALLOW_RERESOLVE: false | |
| env: | |
| GROUP: ${{ matrix.group }} |