Skip to content

Commit

Permalink
CI: unlock cargo-mutants build.
Browse files Browse the repository at this point in the history
The locked version no longer compiles on nightly due to
<rust-lang/rust#99969>.
  • Loading branch information
kpreid committed May 22, 2024
1 parent f9633bd commit 23c1dfb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,8 @@ jobs:
# about caching the builds of them.
# cargo-mutants is not used in this step but it will be cached for later use.
run: |
cargo install --locked wasm-pack@0.12.1 cargo-about@0.6.1 cargo-mutants@24.1.0
cargo install --locked wasm-pack@0.12.1 cargo-about@0.6.1
cargo install cargo-mutants@24.5.0
- run: df -h .
Expand Down Expand Up @@ -327,7 +328,7 @@ jobs:

# Install cargo-mutants
# This should usually be already installed, but is present in case of cache miss
- run: cargo install --locked cargo-mutants@24.1.0
- run: cargo install cargo-mutants@24.5.0

- name: Relative diff
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mutants.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: rustup toolchain install stable --profile=minimal

- name: Install cargo-mutants
run: cargo install --locked cargo-mutants@24.1.0
run: cargo install cargo-mutants@24.5.0

- name: Run mutation testing for all-is-cubes
timeout-minutes: 60
Expand Down

0 comments on commit 23c1dfb

Please sign in to comment.