Skip to content
This repository was archived by the owner on Jul 28, 2023. It is now read-only.

Commit fd0bc6c

Browse files
authored
Merge branch 'release-v0.5' (#178)
* Merge branch 'release-v0.5' * release-v0.5: westend-native -> kusama-native nox nodes nox nodes preparation Module publish (#170) parachain id only from specs update lock update node version westend readme fixes rococo nodes * CI: fix coverage, grcov new release filename
1 parent 44dacae commit fd0bc6c

File tree

8 files changed

+361
-39
lines changed

8 files changed

+361
-39
lines changed

.github/workflows/coverage.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ jobs:
2626
matrix:
2727
cfg:
2828
- os: self-hosted
29-
grcov: grcov-linux-x86_64.tar.bz2
29+
grcov:
30+
version: tags/v0.8.6
31+
file: grcov-v0.8.6-x86_64-unknown-linux-gnu.tar.gz
3032
dove: 1.5.5
3133

3234
env:
@@ -49,18 +51,19 @@ jobs:
4951
run: cargo clean
5052

5153
- name: get latest grcov binary
52-
uses: dsaltares/[email protected].5
54+
uses: dsaltares/[email protected].7
5355
with:
5456
repo: mozilla/grcov
55-
version: "latest"
56-
file: ${{ matrix.cfg.grcov }}
57+
# TODO: use `version: "latest"` and wildcard in the `file`
58+
version: ${{ matrix.cfg.grcov.version }}
59+
file: ${{ matrix.cfg.grcov.file }}
5760

5861
- name: unpack grcov release binary
5962
run: |
60-
tar -xvf ${{ matrix.cfg.grcov }}
63+
tar -xvf ${{ matrix.cfg.grcov.file }}
6164
sudo chown runner ./grcov && chmod +x ./grcov
6265
cp grcov ~/.cargo/bin/grcov
63-
rm ${{ matrix.cfg.grcov }}
66+
rm ${{ matrix.cfg.grcov.file }}
6467
6568
- name: cache Dove
6669
uses: actions/cache@v2

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Add Nimbus key:
5555

5656
```sh
5757
# Use "//Alice" for URI.
58-
./target/release/pontem key insert --keystore-path ~/.pontem/keystore-1 --key-type nmbs
58+
./target/release/pontem key insert --keystore-path ~/.pontem/keystore-1 --key-type nmbs --scheme sr25519
5959
```
6060

6161
```sh
@@ -127,7 +127,7 @@ Add Nimbus key:
127127

128128
```sh
129129
# Use "//Alice" for URI.
130-
./target/release/pontem key insert --keystore-path ~/.pontem/keystore-1 --key-type nmbs
130+
./target/release/pontem key insert --keystore-path ~/.pontem/keystore-1 --key-type nmbs --scheme sr25519
131131
```
132132

133133
Launch parachain node as collator:

node/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = 'Apache-2.0'
77
name = 'pontem-node'
88
edition = '2021'
99
build = 'build.rs'
10-
version = '0.4.4'
10+
version = '0.5.0'
1111

1212
[[bin]]
1313
name = 'pontem'
@@ -105,7 +105,7 @@ constants = { path = '../constants' }
105105
#
106106
# ** Don't enable relay chains you don't need, as this is a **very** heavy build for no reason**
107107
# More info: https://github.com/paritytech/polkadot/pull/3189
108-
polkadot-cli = { git = 'http://github.com/paritytech/polkadot.git', branch = 'release-v0.9.13', features = ["rococo-native"] }
108+
polkadot-cli = { git = 'http://github.com/paritytech/polkadot.git', branch = 'release-v0.9.13', features = ["kusama-native"] }
109109

110110
[dependencies.move-vm]
111111
package = "mvm"

0 commit comments

Comments
 (0)