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

Commit

Permalink
Merge branch 'release-v0.5' (#178)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
boozook authored Feb 5, 2022
1 parent 44dacae commit fd0bc6c
Show file tree
Hide file tree
Showing 8 changed files with 361 additions and 39 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ jobs:
matrix:
cfg:
- os: self-hosted
grcov: grcov-linux-x86_64.tar.bz2
grcov:
version: tags/v0.8.6
file: grcov-v0.8.6-x86_64-unknown-linux-gnu.tar.gz
dove: 1.5.5

env:
Expand All @@ -49,18 +51,19 @@ jobs:
run: cargo clean

- name: get latest grcov binary
uses: dsaltares/[email protected].5
uses: dsaltares/[email protected].7
with:
repo: mozilla/grcov
version: "latest"
file: ${{ matrix.cfg.grcov }}
# TODO: use `version: "latest"` and wildcard in the `file`
version: ${{ matrix.cfg.grcov.version }}
file: ${{ matrix.cfg.grcov.file }}

- name: unpack grcov release binary
run: |
tar -xvf ${{ matrix.cfg.grcov }}
tar -xvf ${{ matrix.cfg.grcov.file }}
sudo chown runner ./grcov && chmod +x ./grcov
cp grcov ~/.cargo/bin/grcov
rm ${{ matrix.cfg.grcov }}
rm ${{ matrix.cfg.grcov.file }}
- name: cache Dove
uses: actions/cache@v2
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Add Nimbus key:

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

```sh
Expand Down Expand Up @@ -127,7 +127,7 @@ Add Nimbus key:

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

Launch parachain node as collator:
Expand Down
4 changes: 2 additions & 2 deletions node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = 'Apache-2.0'
name = 'pontem-node'
edition = '2021'
build = 'build.rs'
version = '0.4.4'
version = '0.5.0'

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

[dependencies.move-vm]
package = "mvm"
Expand Down
Loading

0 comments on commit fd0bc6c

Please sign in to comment.