Skip to content

Commit 30907a5

Browse files
committed
update parachain
1 parent 701eef2 commit 30907a5

File tree

49 files changed

+1319
-1218
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+1319
-1218
lines changed

.github/workflows/docker.yml

100644100755
File mode changed.

.github/workflows/release.yml

100644100755
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,16 @@ jobs:
1818
- name: Add wasm toolchain
1919
uses: actions-rs/toolchain@v1
2020
with:
21-
toolchain: nightly-2020-10-06
21+
toolchain: nightly-2020-12-12
2222
target: wasm32-unknown-unknown
2323
override: true
2424

2525
- name: Initialize environment and build
2626
run: |
2727
rustup update stable
28-
rustup toolchain install nightly-2020-10-06
29-
rustup default nightly-2020-10-06
30-
rustup target add wasm32-unknown-unknown --toolchain nightly-2020-10-06
28+
rustup toolchain install nightly-2020-12-12
29+
rustup default nightly-2020-12-12
30+
rustup target add wasm32-unknown-unknown --toolchain nightly-2020-12-12
3131
cargo build --release
3232
3333
- name: Upload artifact

.github/workflows/test.yml

100644100755
Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ jobs:
2626
- name: Initialize WASM build environment
2727
run: |
2828
rustup update stable
29-
rustup toolchain install nightly-2020-10-06
30-
rustup default nightly-2020-10-06
31-
rustup target add wasm32-unknown-unknown --toolchain nightly-2020-10-06
29+
rustup toolchain install nightly-2020-12-12
30+
rustup default nightly-2020-12-12
31+
rustup target add wasm32-unknown-unknown --toolchain nightly-2020-12-12
3232
3333
- name: Run cargo check
34-
run: cargo +nightly-2020-10-06 check
34+
run: cargo +nightly-2020-12-12 check
3535

3636
test:
3737
name: Test Suite
@@ -56,14 +56,14 @@ jobs:
5656
- name: Initialize WASM build environment
5757
run: |
5858
rustup update stable
59-
rustup toolchain install nightly-2020-10-06
60-
rustup default nightly-2020-10-06
61-
rustup target add wasm32-unknown-unknown --toolchain nightly-2020-10-06
59+
rustup toolchain install nightly-2020-12-12
60+
rustup default nightly-2020-12-12
61+
rustup target add wasm32-unknown-unknown --toolchain nightly-2020-12-12
6262
6363
# Runs integration tests in the runtime/tests folder
6464
- name: Run All Tests
6565
run: |
66-
cargo +nightly-2020-10-06 test
66+
cargo +nightly-2020-12-12 test
6767
6868
lints:
6969
name: Lints
@@ -88,18 +88,18 @@ jobs:
8888
override: true
8989
components: rustfmt, clippy
9090

91-
# nightly-2020-10-06-x86_64-unknown-linux-gnu
91+
# nightly-2020-12-12-x86_64-unknown-linux-gnu
9292
- name: Initialize WASM build environment
9393
run: |
9494
rustup update stable
95-
rustup toolchain install nightly-2020-10-06
96-
rustup default nightly-2020-10-06
97-
rustup target add wasm32-unknown-unknown --toolchain nightly-2020-10-06
95+
rustup toolchain install nightly-2020-12-12
96+
rustup default nightly-2020-12-12
97+
rustup target add wasm32-unknown-unknown --toolchain nightly-2020-12-12
9898
9999
- name: Run cargo fmt
100100
run: |
101-
rustup component add rustfmt --toolchain nightly-2020-10-06-x86_64-unknown-linux-gnu
102-
cargo +nightly-2020-10-06 fmt --all -- --check
101+
rustup component add rustfmt --toolchain nightly-2020-12-12-x86_64-unknown-linux-gnu
102+
cargo +nightly-2020-12-12 fmt --all -- --check
103103
104104
# Ignore use of Clippy until a clippy.toml file may be used. See README.md
105105
# - name: Run cargo clippy
@@ -109,6 +109,6 @@ jobs:
109109
# # args: --release -- -D warnings
110110
# # FIXME - temporary fix below. See https://github.com/rust-lang/rust-clippy/issues/5094#issuecomment-579116431
111111
# run: |
112-
# rustup component add clippy --toolchain nightly-2020-10-06-x86_64-unknown-linux-gnu
113-
# rustup component add clippy-preview --toolchain nightly-2020-10-06-x86_64-unknown-linux-gnu
114-
# cargo +nightly-2020-10-06 clippy-preview -Zunstable-options
112+
# rustup component add clippy --toolchain nightly-2020-12-12-x86_64-unknown-linux-gnu
113+
# rustup component add clippy-preview --toolchain nightly-2020-12-12-x86_64-unknown-linux-gnu
114+
# cargo +nightly-2020-12-12 clippy-preview -Zunstable-options

0 commit comments

Comments
 (0)