Skip to content

Commit

Permalink
Merge pull request #16 from eval-exec/exec/upgrade-rust-toolchain-to_…
Browse files Browse the repository at this point in the history
…1.71.1

Upgrade `rust-toolchain` to `1.71.1`, upgrade `rustup-init` to `1.26.0`
  • Loading branch information
doitian authored Sep 7, 2023
2 parents 7726eba + dfec1b0 commit 8ce6f4d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
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 \
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

0 comments on commit 8ce6f4d

Please sign in to comment.