Skip to content

Commit

Permalink
arm64v8: prefer latest stable version of Rust (#136)
Browse files Browse the repository at this point in the history
The underlying issue (#109) should be fixed with compiler-builtins
v0.1.55, available in Rust 1.59.0.
  • Loading branch information
kleisauke authored May 30, 2022
1 parent c68ec1e commit f4bab75
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion build/lin.sh
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ if [ "$ALL_AT_VERSION_LATEST" = "false" ]; then exit 1; fi

if [ "$DARWIN" = true ]; then
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs \
| sh -s -- -y --no-modify-path --profile minimal ${DARWIN_ARM:+--default-toolchain nightly}
| sh -s -- -y --no-modify-path --profile minimal
if [ "$DARWIN_ARM" = true ]; then
${CARGO_HOME}/bin/rustup target add aarch64-apple-darwin
fi
Expand Down
1 change: 0 additions & 1 deletion linux-arm64v8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ RUN \
curl https://sh.rustup.rs -sSf | sh -s -- -y \
--no-modify-path \
--profile minimal \
--default-toolchain nightly \
&& \
rustup target add aarch64-unknown-linux-gnu && \
ln -s /usr/bin/cmake3 /usr/bin/cmake && \
Expand Down
1 change: 0 additions & 1 deletion linuxmusl-arm64v8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ RUN \
curl https://sh.rustup.rs -sSf | sh -s -- -y \
--no-modify-path \
--profile minimal \
--default-toolchain nightly \
&& \
rustup target add aarch64-unknown-linux-musl && \
pip3 install meson
Expand Down

0 comments on commit f4bab75

Please sign in to comment.