File tree 2 files changed +4
-5
lines changed
2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -104,9 +104,9 @@ RUN cd "$TMP_POETRY_DIR" \
104
104
&& poetry install --no-dev --no-interaction
105
105
106
106
# Install the Rust toolchain
107
- RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --profile minimal -- default-toolchain "$RUST_TOOLCHAIN" \
107
+ RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain "$RUST_TOOLCHAIN" \
108
108
&& rustup target add aarch64-unknown-linux-musl \
109
- && rustup component add clippy llvm-tools-preview \
109
+ && rustup component add llvm-tools-preview \
110
110
&& cargo install --version $GRCOV_VERSION grcov
111
111
112
112
RUN ln -s /usr/bin/musl-gcc /usr/bin/aarch64-linux-musl-gcc
Original file line number Diff line number Diff line change @@ -109,10 +109,9 @@ RUN (curl -sL https://deb.nodesource.com/setup_14.x | bash) \
109
109
&& rm -rf /var/lib/apt/lists/*
110
110
111
111
# Install the Rust toolchain
112
- RUN curl -sSf https://sh.rustup.rs | sh -s -- -y --profile minimal -- default-toolchain "$RUST_TOOLCHAIN" \
112
+ RUN curl -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain "$RUST_TOOLCHAIN" \
113
113
&& rustup target add x86_64-unknown-linux-musl \
114
- && rustup component add rustfmt clippy clippy-preview llvm-tools-preview \
115
- && rustup install --profile minimal "stable" \
114
+ && rustup component add llvm-tools-preview \
116
115
&& cargo install +"stable" cargo-audit \
117
116
&& cargo install --locked cargo-deny \
118
117
&& cargo install --version $GRCOV_VERSION grcov
You can’t perform that action at this time.
0 commit comments