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

Update rust toolchain to nightly-2021-09-12 #334

Merged
merged 1 commit into from
Oct 9, 2021
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly-2021-06-17
toolchain: nightly-2021-09-12
components: rustfmt
target: wasm32-unknown-unknown
default: true
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
FROM rust:buster as builder

RUN apt-get update && apt-get install time clang libclang-dev llvm -y
RUN rustup toolchain install nightly-2021-06-17
RUN rustup target add wasm32-unknown-unknown --toolchain nightly-2021-06-17
RUN rustup toolchain install nightly-2021-09-12
RUN rustup target add wasm32-unknown-unknown --toolchain nightly-2021-09-12

WORKDIR /app
COPY . /app
Expand Down
4 changes: 2 additions & 2 deletions scripts/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ set -e

echo "*** Initializing WASM build environment"

rustup default nightly-2021-06-17
rustup default nightly-2021-09-12

rustup target add wasm32-unknown-unknown --toolchain nightly-2021-06-17
rustup target add wasm32-unknown-unknown --toolchain nightly-2021-09-12