ci: Install cargo-nextest
with --locked
(#22984)
This PR makes it so we install `cargo-nextest` with `cargo install cargo-nextest --locked` in CI. According to the [docs](https://nexte.st/docs/installation/from-source/), this is the **only** supported way to install `cargo-nextest` when building from source. Release Notes: - N/A
This commit is contained in:
parent
80cc1f174f
commit
0f1c2a8d01
2 changed files with 2 additions and 2 deletions
2
.github/actions/run_tests/action.yml
vendored
2
.github/actions/run_tests/action.yml
vendored
|
@ -7,7 +7,7 @@ runs:
|
|||
- name: Install Rust
|
||||
shell: bash -euxo pipefail {0}
|
||||
run: |
|
||||
cargo install cargo-nextest
|
||||
cargo install cargo-nextest --locked
|
||||
|
||||
- name: Install Node
|
||||
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4
|
||||
|
|
2
.github/workflows/deploy_collab.yml
vendored
2
.github/workflows/deploy_collab.yml
vendored
|
@ -44,7 +44,7 @@ jobs:
|
|||
- name: Install cargo nextest
|
||||
shell: bash -euxo pipefail {0}
|
||||
run: |
|
||||
cargo install cargo-nextest
|
||||
cargo install cargo-nextest --locked
|
||||
|
||||
- name: Limit target directory size
|
||||
shell: bash -euxo pipefail {0}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue