Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c919307

Browse files
committedAug 30, 2022
feat: upgrade to polkadot v0.9.27 (#394)
* feat: upgrade to Polkadot v0.9.27 * chore: bump nightly, sr-tool, base docker img * fix: clippy clone runtime * fix: clippy * fix: remove deprecated license fmt checker rust-lang/rustfmt#5103 * fix: clippy 2 * fix: clone * chore: bump sub deps * fix: clippy * chore: bump serde * ci: fix bump srtool to 1.62.0 * fix: remove kilt-support dep from clone runtime * ci: bump parity base img
1 parent a6bc432 commit c919307

Some content is hidden

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

51 files changed

+1414
-1381
lines changed
 

‎.gitlab-ci.yml

+10-10
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ stages:
44

55
clippy:
66
# Corresponds to paritytech/ci-linux:production at the time of this PR
7-
# https://hub.docker.com/layers/ci-linux/paritytech/ci-linux/production/images/sha256-c75cee0971ca54e57a875fac8714eea2db754e621841cde702478783fc28ab90?context=explore
8-
image: paritytech/ci-linux@sha256:c75cee0971ca54e57a875fac8714eea2db754e621841cde702478783fc28ab90
7+
# https://hub.docker.com/layers/ci-linux/paritytech/ci-linux/production/images/sha256-3e13ead5d3a2aaca0ea5ffc8fedeef05f0ac9efe325c77b8b06d208d3c7e8ee6?context=explore
8+
image: paritytech/ci-linux@sha256:3e13ead5d3a2aaca0ea5ffc8fedeef05f0ac9efe325c77b8b06d208d3c7e8ee6
99
stage: test
1010
timeout: 1 hours
1111
script:
@@ -14,8 +14,8 @@ clippy:
1414

1515
fmt:
1616
# Corresponds to paritytech/ci-linux:production at the time of this PR
17-
# https://hub.docker.com/layers/ci-linux/paritytech/ci-linux/production/images/sha256-c75cee0971ca54e57a875fac8714eea2db754e621841cde702478783fc28ab90?context=explore
18-
image: paritytech/ci-linux@sha256:c75cee0971ca54e57a875fac8714eea2db754e621841cde702478783fc28ab90
17+
# https://hub.docker.com/layers/ci-linux/paritytech/ci-linux/production/images/sha256-3e13ead5d3a2aaca0ea5ffc8fedeef05f0ac9efe325c77b8b06d208d3c7e8ee6?context=explore
18+
image: paritytech/ci-linux@sha256:3e13ead5d3a2aaca0ea5ffc8fedeef05f0ac9efe325c77b8b06d208d3c7e8ee6
1919
stage: test
2020
timeout: 1 hours
2121
script:
@@ -24,17 +24,17 @@ fmt:
2424

2525
test:
2626
# Corresponds to paritytech/ci-linux:production at the time of this PR
27-
# https://hub.docker.com/layers/ci-linux/paritytech/ci-linux/production/images/sha256-c75cee0971ca54e57a875fac8714eea2db754e621841cde702478783fc28ab90?context=explore
28-
image: paritytech/ci-linux@sha256:c75cee0971ca54e57a875fac8714eea2db754e621841cde702478783fc28ab90
27+
# https://hub.docker.com/layers/ci-linux/paritytech/ci-linux/production/images/sha256-3e13ead5d3a2aaca0ea5ffc8fedeef05f0ac9efe325c77b8b06d208d3c7e8ee6?context=explore
28+
image: paritytech/ci-linux@sha256:3e13ead5d3a2aaca0ea5ffc8fedeef05f0ac9efe325c77b8b06d208d3c7e8ee6
2929
stage: test
3030
timeout: 1 hours
3131
script:
3232
- cargo test --all --all-targets --locked
3333

3434
test-features:
3535
# Corresponds to paritytech/ci-linux:production at the time of this PR
36-
# https://hub.docker.com/layers/ci-linux/paritytech/ci-linux/production/images/sha256-c75cee0971ca54e57a875fac8714eea2db754e621841cde702478783fc28ab90?context=explore
37-
image: paritytech/ci-linux@sha256:c75cee0971ca54e57a875fac8714eea2db754e621841cde702478783fc28ab90
36+
# https://hub.docker.com/layers/ci-linux/paritytech/ci-linux/production/images/sha256-3e13ead5d3a2aaca0ea5ffc8fedeef05f0ac9efe325c77b8b06d208d3c7e8ee6?context=explore
37+
image: paritytech/ci-linux@sha256:3e13ead5d3a2aaca0ea5ffc8fedeef05f0ac9efe325c77b8b06d208d3c7e8ee6
3838
stage: test
3939
timeout: 1 hours
4040
script:
@@ -68,7 +68,7 @@ build:
6868

6969
build-wasm-peregrine:
7070
image:
71-
name: paritytech/srtool:1.60.0
71+
name: paritytech/srtool:1.62.0
7272
entrypoint: [""]
7373
stage: build
7474
only:
@@ -88,7 +88,7 @@ build-wasm-peregrine:
8888

8989
build-wasm-spiritnet:
9090
image:
91-
name: paritytech/srtool:1.60.0
91+
name: paritytech/srtool:1.62.0
9292
entrypoint: [""]
9393
stage: build
9494
only:

‎.rustfmt.toml

-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,3 @@ imports_granularity = "Crate"
44
hard_tabs = true
55
max_width = 120
66
wrap_comments = true
7-
license_template_path = "HEADER-GPL"

0 commit comments

Comments
 (0)
Please sign in to comment.