fix: reinit! on forwarddiff cache (#491) #44
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
name: CI (NonlinearSolveFirstOrder) | |
on: | |
pull_request: | |
branches: | |
- master | |
paths: | |
- "lib/NonlinearSolveFirstOrder/**" | |
- ".github/workflows/CI_NonlinearSolveFirstOrder.yml" | |
- "lib/NonlinearSolveBase/**" | |
- "lib/SciMLJacobianOperators/**" | |
push: | |
branches: | |
- master | |
concurrency: | |
# Skip intermediate builds: always. | |
# Cancel intermediate builds: only if it is a pull request build. | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
version: | |
- "1.10" | |
- "1" | |
os: | |
- ubuntu-latest | |
- macos-latest | |
- windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: julia-actions/setup-julia@v2 | |
with: | |
version: ${{ matrix.version }} | |
- uses: actions/cache@v4 | |
env: | |
cache-name: cache-artifacts | |
with: | |
path: ~/.julia/artifacts | |
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }} | |
restore-keys: | | |
${{ runner.os }}-test-${{ env.cache-name }}- | |
${{ runner.os }}-test- | |
${{ runner.os }}- | |
- 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") | |
shell: julia --color=yes --code-coverage=user --depwarn=yes --project=lib/NonlinearSolveFirstOrder {0} | |
- uses: julia-actions/julia-processcoverage@v1 | |
with: | |
directories: lib/NonlinearSolveFirstOrder/src,lib/NonlinearSolveBase/src,lib/NonlinearSolveBase/ext,lib/SciMLJacobianOperators/src | |
- uses: codecov/codecov-action@v4 | |
with: | |
file: lcov.info | |
token: ${{ secrets.CODECOV_TOKEN }} | |
verbose: true | |
fail_ci_if_error: true | |
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@v1 | |
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") | |
shell: julia --color=yes --code-coverage=user --depwarn=yes --project=lib/NonlinearSolveFirstOrder {0} | |
- uses: julia-actions/julia-processcoverage@v1 | |
with: | |
directories: lib/NonlinearSolveFirstOrder/src,lib/NonlinearSolveBase/src,lib/NonlinearSolveBase/ext,lib/SciMLJacobianOperators/src | |
- uses: codecov/codecov-action@v4 | |
with: | |
file: lcov.info | |
token: ${{ secrets.CODECOV_TOKEN }} | |
verbose: true | |
fail_ci_if_error: true |