Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade rust-toolchain to 1.71.1, upgrade rustup-init to 1.26.0 #16

Merged
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions bionic/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ RUN set -eux; \
ENV RUSTUP_HOME=/usr/local/rustup \
CARGO_HOME=/usr/local/cargo \
PATH=/usr/local/cargo/bin:$PATH \
RUSTUP_VERSION=1.25.2 \
RUSTUP_SHA256=bb31eaf643926b2ee9f4d8d6fc0e2835e03c0a60f34d324048aa194f0b29a71c \
RUSTUP_VERSION=1.26.0 \
RUSTUP_SHA256=0b2f6c8f85a3d02fde2efc0ced4657869d73fccfce59defb4e8d29233116e6db \
RUST_ARCH=x86_64-unknown-linux-gnu

RUN set -eux; \
Expand All @@ -28,7 +28,7 @@ RUN set -eux; \
echo "${RUSTUP_SHA256} *rustup-init" | sha256sum -c -; \
chmod +x rustup-init

ENV RUST_VERSION=1.68.1
ENV RUST_VERSION=1.71.1

RUN set -eux; \
./rustup-init -y --no-modify-path --default-toolchain $RUST_VERSION; \
Expand Down
6 changes: 3 additions & 3 deletions centos-7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ RUN set -eux; \
ENV RUSTUP_HOME=/usr/local/rustup \
CARGO_HOME=/usr/local/cargo \
PATH=/usr/local/cargo/bin:$PATH \
RUSTUP_VERSION=1.25.2 \
RUSTUP_SHA256=bb31eaf643926b2ee9f4d8d6fc0e2835e03c0a60f34d324048aa194f0b29a71c \
RUSTUP_VERSION=1.26.0\
doitian marked this conversation as resolved.
Show resolved Hide resolved
RUSTUP_SHA256=0b2f6c8f85a3d02fde2efc0ced4657869d73fccfce59defb4e8d29233116e6db \
RUST_ARCH=x86_64-unknown-linux-gnu

RUN set -eux; \
Expand All @@ -36,7 +36,7 @@ RUN set -eux; \
echo "${RUSTUP_SHA256} *rustup-init" | sha256sum -c -; \
chmod +x rustup-init

ENV RUST_VERSION=1.68.1
ENV RUST_VERSION=1.71.1

RUN set -eux; \
./rustup-init -y --no-modify-path --default-toolchain $RUST_VERSION; \
Expand Down
4 changes: 2 additions & 2 deletions gen-dockerfiles
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
import os
from urllib import request

RUST_VERSION = '1.68.1'
RUSTUP_VERSION = '1.25.2'
RUST_VERSION = '1.71.1'
RUSTUP_VERSION = '1.26.0'

RUST_ARCH = 'x86_64-unknown-linux-gnu'

Expand Down