Skip to content

Commit

Permalink
fix: cargo-platform v0.1.9 need rustc 1.78 or newer
Browse files Browse the repository at this point in the history
  • Loading branch information
purelind committed Dec 6, 2024
1 parent d2aa59c commit 76b3afc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion dockerfiles/ci/jenkins/tikv/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,11 @@ ENV PATH="${CARGO_HOME}/bin:${PATH}"
# install components
RUN rustup component add rustfmt clippy rust-src llvm-tools

RUN rustup set profile minimal

# Install specific versions of cargo-nextest and cargo-sort
RUN cargo install cargo-nextest --version 0.9.72 && \
RUN rustup update stable && rustup default stable && \
cargo install cargo-nextest --version 0.9.72 && \
cargo install cargo-sort --version 1.0.9

ENV CARGO_INCREMENTAL=0

0 comments on commit 76b3afc

Please sign in to comment.