Skip to content

Commit

Permalink
ci: pin version of nextest to be compatible to MSVR
Browse files Browse the repository at this point in the history
  • Loading branch information
davidB committed Feb 16, 2025
1 parent 371a39b commit ac3f0db
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@ _install_cargo-binstall:
@# cargo install --locked cargo-binstall
@(cargo-binstall -V > /dev/null) || (curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash)

_binstall ARG: _install_cargo-binstall
@(cargo binstall -y {{ARG}} || cargo install --locked {{ARG}})
_binstall +ARGS: _install_cargo-binstall
@(cargo binstall -y {{ARGS}} || cargo install --locked {{ARGS}})

_install_cargo-deny:
@just _binstall cargo-deny

# 0.9.85 to be compatible with Rust 1.80 (MSVR)
_install_cargo-nextest:
@just _binstall cargo-nextest
@just _binstall cargo-nextest --version 0.9.85

_install_cargo-insta:
@just _binstall cargo-insta
Expand Down

0 comments on commit ac3f0db

Please sign in to comment.