Skip to content

Commit 45f0a87

Browse files
authored
test: fix nextest installation (#5109)
1 parent 76ddac4 commit 45f0a87

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/build-unix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
uses: cargo-bins/cargo-binstall@main
3838

3939
- name: "Install: cargo-nextest"
40-
run: cargo binstall --no-confirm cargo-nextest
40+
run: cargo binstall --no-confirm --locked cargo-nextest
4141

4242
- name: "ACTIONS: Download node"
4343
uses: actions/download-artifact@v4

scripts/src/init.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ wasm_init() {
3232
cargo_init() {
3333
if [ -z $CI ] ; then
3434
cargo install cargo-hack
35-
cargo install cargo-nextest
35+
cargo install --locked cargo-nextest
3636
elif [ "$RUNNER_OS" = "Linux" ] && [[ "$(uname -m)" =~ ^(x86_64|amd64)$ ]]; then
3737
curl -L "https://github.com/taiki-e/cargo-hack/releases/latest/download/cargo-hack-x86_64-unknown-linux-gnu.tar.gz" |
3838
tar zxf - -C ${CARGO_HOME:-~/.cargo}/bin

0 commit comments

Comments
 (0)