Skip to content

Commit

Permalink
chore: upgrade to nightly-2021-03-15
Browse files Browse the repository at this point in the history
Signed-off-by: Gregory Hill <[email protected]>
  • Loading branch information
gregdhill committed Mar 29, 2021
1 parent ab1a71a commit 10b6428
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .deploy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM rust:latest
RUN apt-get -y update
RUN apt-get install -y build-essential cmake pkg-config libssl-dev clang libclang-dev llvm

ARG TOOLCHAIN=nightly-2021-02-15
ARG TOOLCHAIN=nightly-2021-03-15
RUN rustup toolchain install ${TOOLCHAIN}
RUN rustup default ${TOOLCHAIN}
RUN rustup component add rustfmt
Expand Down
2 changes: 1 addition & 1 deletion .deploy/rust-builder-pod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
containers:
- name: jnlp
- name: rust
image: registry.gitlab.com/interlay/containers/rust-base:nightly-2021-02-15
image: registry.gitlab.com/interlay/containers/rust-base:nightly-2021-03-15
imagePullPolicy: Always
command:
- cat
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RUN apt-get update && \
apt-get dist-upgrade -y -o Dpkg::Options::="--force-confold" && \
apt-get install -y cmake pkg-config libssl-dev git clang

ARG TOOLCHAIN=nightly-2021-02-15
ARG TOOLCHAIN=nightly-2021-03-15

RUN curl https://sh.rustup.rs -sSf | sh -s -- -y && \
export PATH="$PATH:$HOME/.cargo/bin" && \
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,12 +92,12 @@ curl https://sh.rustup.rs -sSf | sh
Building requires `nightly`. Run the following commands to set it up:

```
rustup toolchain install nightly-2021-02-15
rustup default nightly-2021-02-15
rustup toolchain install nightly-2021-03-15
rustup default nightly-2021-03-15
rustup component add rustfmt
rustup component add rls
rustup toolchain install nightly
rustup target add wasm32-unknown-unknown --toolchain nightly-2021-02-15
rustup target add wasm32-unknown-unknown --toolchain nightly-2021-03-15
```

To build, run:
Expand Down

0 comments on commit 10b6428

Please sign in to comment.