Skip to content

Commit

Permalink
Rollback multi-rust version changes to the dockerfile (#2852)
Browse files Browse the repository at this point in the history
## Motivation and Context
solved by deploying a newer version of smithy-rs instead

----

_By submitting this pull request, I confirm that you can use, modify,
copy, and redistribute this contribution, under the terms of your
choice._
  • Loading branch information
rcoh authored Jul 17, 2023
1 parent 1ac5942 commit d4c5064
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions tools/ci-build/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
# This is the base Docker build image used by CI

ARG base_image=public.ecr.aws/amazonlinux/amazonlinux:2
ARG prev_rust_stable_version=1.67.1
ARG rust_stable_version=1.68.2
ARG rust_nightly_version=nightly-2023-05-31

Expand All @@ -26,7 +25,6 @@ RUN curl https://musl.libc.org/releases/musl-1.2.3.tar.gz -o musl-1.2.3.tar.gz \
FROM bare_base_image AS install_rust
ARG rust_stable_version
ARG rust_nightly_version
ARG prev_rust_stable_version
ENV RUSTUP_HOME=/opt/rustup \
CARGO_HOME=/opt/cargo \
PATH=/opt/cargo/bin/:${PATH} \
Expand Down Expand Up @@ -62,7 +60,6 @@ RUN set -eux; \
rustup component add rustfmt; \
rustup component add clippy; \
rustup toolchain install ${rust_nightly_version} --component clippy; \
rustup toolchain install ${prev_rust_stable_version} --component clippy; \
rustup target add x86_64-unknown-linux-musl; \
rustup target add wasm32-unknown-unknown; \
rustup target add wasm32-wasi; \
Expand Down

0 comments on commit d4c5064

Please sign in to comment.