Skip to content

Commit

Permalink
Update stable rust toolchain to 1.60.0
Browse files Browse the repository at this point in the history
Fix #269

Signed-off-by: Wei Liu <wei3.liu@intel.com>
  • Loading branch information
liuw1 authored and jyao1 committed May 16, 2022
1 parent 0e08c3e commit 552e40d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/devtools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ env:
AS: nasm
AR_x86_64_unknown_uefi: llvm-ar
CC_x86_64_unknown_uefi: clang
STABLE_RUST_TOOLCHAIN: 1.58.1
STABLE_RUST_TOOLCHAIN: 1.60.0
NIGHTLY_RUST_TOOLCHAIN: nightly-2022-04-07
TOOLCHAIN_PROFILE: minimal

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/library.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ env:
AS: nasm
AR_x86_64_unknown_uefi: llvm-ar
CC_x86_64_unknown_uefi: clang
STABLE_RUST_TOOLCHAIN: 1.58.1
STABLE_RUST_TOOLCHAIN: 1.60.0
NIGHTLY_RUST_TOOLCHAIN: nightly-2022-04-07
TOOLCHAIN_PROFILE: minimal

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export CARGO=cargo
export STABLE_TOOLCHAIN:=1.58.1
export STABLE_TOOLCHAIN:=1.60.0
export NIGHTLY_TOOLCHAIN:=nightly-2022-04-07
export BUILD_TYPE:=release
export PREFIX:=/usr/local
Expand Down
2 changes: 1 addition & 1 deletion devtools/dev_container/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RUN apt-get update && \

# Install rustup and a fixed version of Rust.
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain nightly-2022-04-07
RUN rustup toolchain install 1.58.1
RUN rustup toolchain install 1.60.0
RUN rustup component add rust-src
RUN rustup component add llvm-tools-preview
COPY cargo_config /root/.cargo/config
Expand Down

0 comments on commit 552e40d

Please sign in to comment.