Skip to content

Commit

Permalink
fix(tikv): fix ci jenkins dockerfile
Browse files Browse the repository at this point in the history
Signed-off-by: wuhuizuo <wuhuizuo@126.com>
  • Loading branch information
wuhuizuo committed Dec 17, 2024
1 parent a860a3b commit ace6799
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions dockerfiles/ci/jenkins/tikv/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,12 @@ RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --de
ENV PATH="${CARGO_HOME}/bin:${PATH}"

# install components
RUN rustup component add rustfmt clippy rust-src llvm-tools

RUN rustup set profile minimal
RUN rustup component add rustfmt clippy rust-src llvm-tools && \
rustup set profile minimal

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

ENV CARGO_INCREMENTAL=0

0 comments on commit ace6799

Please sign in to comment.