Skip to content

Commit

Permalink
use nightly in minion
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasdewally committed Nov 1, 2023
1 parent 96681cb commit 7af1d4f
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/doc-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ jobs:
steps:
- uses: actions/checkout@v2


- name: Get minion hash for cache invalidation
id: minion-cache
run: |
Expand All @@ -29,6 +30,9 @@ jobs:
key: nightly-${{ runner.os }}-minion-${{ steps.minion-cache.outputs.minion_sha }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: nightly-${{ runner.os }}-minion-${{ steps.minion-cache.outputs.minion_sha}}-cargo-

- name: Use nightly
run: rustup update nightly && rustup default nightly

- name: Coverage Report
working-directory: ./solvers/minion
run: |
Expand Down Expand Up @@ -61,7 +65,7 @@ jobs:
# match chuffed exactly, cargo inexactly
restore-keys: nightly-${{ runner.os }}-chuffed-${{ steps.chuffed-cache.outputs.chuffed_sha}}-cargo-

- working-directory: ./solvers/chuffed
- name: Use nightly
run: rustup update nightly && rustup default nightly

- name: Coverage Report
Expand Down Expand Up @@ -91,7 +95,8 @@ jobs:
key: nightly-conjureoxide-${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: nightly-conjureoxide-${{ runner.os }}-cargo

- run: rustup update nightly && rustup default nightly
- name: Use nightly
run: rustup update nightly && rustup default nightly

- name: Coverage Report
run: |
Expand Down

0 comments on commit 7af1d4f

Please sign in to comment.