From 73080fb320ac63ca29b66c217f84817333958d62 Mon Sep 17 00:00:00 2001 From: Mikolaj Wielgus Date: Mon, 15 Sep 2025 15:52:36 +0200 Subject: [PATCH] chore: Attempt to fix missing `cargo binstall` command error in CI --- .woodpecker/build_and_test.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.woodpecker/build_and_test.yaml b/.woodpecker/build_and_test.yaml index 5f13559..177739b 100644 --- a/.woodpecker/build_and_test.yaml +++ b/.woodpecker/build_and_test.yaml @@ -28,8 +28,10 @@ steps: RUST_BACKTRACE: 1 CARGO_TERM_COLOR: always commands: + - apt-get -y install curl + - curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash + - cargo binstall --no-confirm cargo-nextest - rustup default "$CHANNEL" - - cargo binstall cargo-nextest --secure - cargo nextest -j4 --verbose --no-default-features --features "$FEATURES" when: event: [pull_request, push, tag]