-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bump to v0.9.38 * Remove ethereum-light-client from workspace * Fix ci breaking * Remove snowbridge-xcm-support from runtime * Fix ci * Move initialize script to hook * Fix ci test * Refactor: move to initialize hook & some cleanup * For ci * Fix husky * Fix: speed test * Update foundry libs with submodule * Upgrade go-substrate-rpc-client & stop-gap of relaychain * For #12345 and #12530 * env for goerli * Fix for production deployment * Sync dependencies from release * Remove test parachain node * More cleanup * Use host runner * Fix wrong commit * Sync dev setup * Sync pnpm-lock file & Remove fmt in CI * Fix format[skip ci] * Sync toolchain[skip ci] * Fix for geth 1.11 * Suppress warning in building parachain * Ron/polkadot v0.9.38 12857 (#780) * Sync #12857 * Remove test chain * For #12857 * For #12857 * #12857 * Fix build[skip ci] * Workaround for current mmr api * Test CI with foundry * Fix ci breaking * Add cargo fmt to husky & ignore some merkle tests cause ci breaking * Sync dev setup * Revert to use next beefy block * Comment for paritytech/polkadot#6577 * Fix for geth 1.11 * For paritytech/polkadot#6577 * For paritytech/polkadot#6577 * Bump substrate-rpc
- Loading branch information
Showing
82 changed files
with
7,239 additions
and
4,376 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,47 +3,20 @@ name: parachain | |
on: | ||
push: | ||
paths: | ||
- 'parachain/**' | ||
- '!parachain/README.md' | ||
- '!parachain/LICENSE' | ||
- "parachain/**" | ||
- "!parachain/README.md" | ||
- "!parachain/LICENSE" | ||
branches: | ||
- main | ||
pull_request: | ||
paths: | ||
- 'parachain/**' | ||
- '!parachain/README.md' | ||
- '!parachain/LICENSE' | ||
- "parachain/**" | ||
- "!parachain/README.md" | ||
- "!parachain/LICENSE" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
fmt: | ||
runs-on: ubuntu-20.04 | ||
env: | ||
CARGO_INCREMENTAL: 0 | ||
RUST_BACKTRACE: 1 | ||
RUSTFLAGS: -C debuginfo=1 | ||
SKIP_WASM_BUILD: 1 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/cache@v1 | ||
with: | ||
path: | | ||
~/.cargo/registry | ||
~/.cargo/git | ||
key: ${{ runner.os }}-cargo-${{ hashFiles('parachain/Cargo.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-cargo- | ||
- uses: actions-rs/toolchain@v1 | ||
with: | ||
profile: minimal | ||
toolchain: nightly | ||
target: wasm32-unknown-unknown | ||
components: rustfmt | ||
- name: cargo fmt | ||
run: cd parachain && cargo +nightly fmt -- --check --config-path rustfmt.toml && cd - | ||
|
||
check: | ||
runs-on: ubuntu-20.04 | ||
runs-on: snowbridge-runner | ||
env: | ||
CARGO_INCREMENTAL: 0 | ||
RUST_BACKTRACE: 1 | ||
|
@@ -66,22 +39,21 @@ jobs: | |
- uses: actions-rs/toolchain@v1 | ||
with: | ||
profile: minimal | ||
toolchain: 1.62.1 | ||
toolchain: nightly-2022-11-15 | ||
target: wasm32-unknown-unknown | ||
- name: cargo check | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
command: check | ||
toolchain: 1.62.1 | ||
toolchain: nightly-2022-11-15 | ||
args: >- | ||
--manifest-path parachain/Cargo.toml | ||
--workspace | ||
--exclude snowbridge | ||
--features runtime-benchmarks | ||
test: | ||
needs: check | ||
runs-on: ubuntu-20.04 | ||
runs-on: snowbridge-runner | ||
env: | ||
CARGO_INCREMENTAL: 0 | ||
RUST_BACKTRACE: 1 | ||
|
@@ -99,10 +71,11 @@ jobs: | |
key: ${{ runner.os }}-cargo-${{ hashFiles('parachain/Cargo.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-cargo- | ||
- uses: arduino/setup-protoc@v1 | ||
- uses: actions-rs/toolchain@v1 | ||
with: | ||
profile: minimal | ||
toolchain: 1.62.1 | ||
toolchain: nightly-2022-11-15 | ||
target: wasm32-unknown-unknown | ||
- name: test beacon client with minimal feature | ||
uses: actions-rs/cargo@v1 | ||
|
@@ -114,7 +87,7 @@ jobs: | |
--package snowbridge-ethereum-beacon-client | ||
--features runtime-benchmarks | ||
--features minimal | ||
toolchain: 1.62.1 | ||
toolchain: nightly-2022-11-15 | ||
- uses: actions-rs/[email protected] | ||
with: | ||
crate: cargo-tarpaulin | ||
|
@@ -127,12 +100,11 @@ jobs: | |
args: >- | ||
--manifest-path parachain/Cargo.toml | ||
--verbose --workspace | ||
--exclude snowbridge | ||
--exclude snowbridge-runtime | ||
--exclude snowblink-runtime | ||
--exclude snowbridge | ||
--exclude snowbridge-runtime | ||
--exclude snowblink-runtime | ||
--exclude snowbase-runtime | ||
--exclude-files '*/mock.rs,*/tests.rs' | ||
--features runtime-benchmarks | ||
--avoid-cfg-tarpaulin | ||
--coveralls ${{ secrets.COVERALLS_REPO_TOKEN }} | ||
toolchain: 1.62.1 | ||
toolchain: nightly-2022-11-15 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
.turbo | ||
.deps |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,3 +16,4 @@ cache/ | |
broadcast/ | ||
test/ffiWrapper.js | ||
tsconfig.tsbuildinfo | ||
test/**/data/*.json.keep |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.