Skip to content
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/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly-2022-05-15
toolchain: nightly-2022-08-05
components: rustfmt
target: wasm32-unknown-unknown
default: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ on:
required: false

env:
SUBWASM_VERSION: 0.17.0
SUBWASM_VERSION: 0.18.0
CHAIN: ${{ github.event.inputs.chain }}
SCOPE: ${{ github.event.inputs.scope }}

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly-2022-05-15
toolchain: nightly-2022-08-05
components: rustfmt
target: wasm32-unknown-unknown
default: true
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly-2022-05-15
toolchain: nightly-2022-08-05
components: rustfmt
target: wasm32-unknown-unknown
default: true
Expand All @@ -94,7 +94,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly-2022-05-15
toolchain: nightly-2022-08-05
components: rustfmt
target: wasm32-unknown-unknown
default: true
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly-2022-05-15
toolchain: nightly-2022-08-05
components: rustfmt
target: wasm32-unknown-unknown
default: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml.src
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly-2022-05-15
toolchain: nightly-2022-08-05
components: rustfmt
target: wasm32-unknown-unknown
default: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-tokens.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly-2022-05-15
toolchain: nightly-2022-08-05
components: rustfmt
target: wasm32-unknown-unknown
default: true
Expand Down
4 changes: 2 additions & 2 deletions scripts/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM rust:buster as builder
WORKDIR /app

RUN rustup default nightly-2022-05-15 && \
rustup target add wasm32-unknown-unknown --toolchain nightly-2022-05-15
RUN rustup default nightly-2022-08-05 && \
rustup target add wasm32-unknown-unknown --toolchain nightly-2022-08-05

RUN apt-get update && \
apt-get dist-upgrade -y -o Dpkg::Options::="--force-confold" && \
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-2022-05-15
rustup default nightly-2022-08-05

rustup target add wasm32-unknown-unknown --toolchain nightly-2022-05-15
rustup target add wasm32-unknown-unknown --toolchain nightly-2022-08-05
2 changes: 1 addition & 1 deletion scripts/srtool-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -xe

RUSTC_VERSION=1.62.0;
RUSTC_VERSION=1.64.0;
PACKAGE=$PACKAGE;
BUILD_OPTS=$BUILD_OPTS;

Expand Down