Skip to content

Commit

Permalink
fix: install correct nextest version (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
mhasel authored Jun 6, 2024
1 parent 0d6abc0 commit aea39d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion linux/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ RUN chmod -R a+rw $CARGO_HOME \
#Install bininstall to make subsequent binaries easier to download
RUN wget https://github.com/cargo-bins/cargo-binstall/releases/latest/download/cargo-binstall-`uname -m`-unknown-linux-musl.tgz && tar -xf cargo-binstall-`uname -m`-unknown-linux-musl.tgz -C $CARGO_HOME/bin
#Install documentation and coverage tools
RUN cargo binstall --no-confirm mdbook grcov nextest
RUN cargo binstall --no-confirm mdbook grcov cargo-nextest

WORKDIR /build
ENTRYPOINT ["bash"]
Expand Down
2 changes: 1 addition & 1 deletion windows/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ RUN C:/TEMP/rustup-init.exe --default-toolchain $env:RUST_VER -y
RUN rustup install stable

RUN rustup component add llvm-tools-preview
RUN cargo install mdbook grcov nextest
RUN cargo install mdbook grcov cargo-nextest

RUN setx /M PATH $($Env:PATH + ';C:/buildtools/llvm/bin')

Expand Down

0 comments on commit aea39d2

Please sign in to comment.