Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support MMR digest in block header #358

Merged
merged 13 commits into from
Mar 24, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .maintain/ci/travis.local.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ readonly TEST_CRATES=(
'treasury'
'eth-relay'
'eth-backing'
'header-mmr'
);

function main() {
Expand Down
16 changes: 10 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,30 +29,34 @@ jobs:
env: RUST_TOOLCHAIN=nightly-2020-02-07 TARGET=wasm
script: .maintain/ci/build_script.sh

- stage: Darwinia Test
- stage: Darwinia KTON Test
env: RUST_TOOLCHAIN=nightly-2020-02-07 TARGET=native KTON
script: .maintain/ci/darwinia_test_script.sh kton

- stage: Darwinia Test
- stage: Darwinia RING Test
env: RUST_TOOLCHAIN=nightly-2020-02-07 TARGET=native RING
script: .maintain/ci/darwinia_test_script.sh ring

- stage: Darwinia Test
- stage: Darwinia STAKING Test
env: RUST_TOOLCHAIN=nightly-2020-02-07 TARGET=native STAKING
script: .maintain/ci/darwinia_test_script.sh staking

- stage: Darwinia Test
- stage: Darwinia TREASURY Test
env: RUST_TOOLCHAIN=nightly-2020-02-07 TARGET=native TREASURY
script: .maintain/ci/darwinia_test_script.sh treasury

- stage: Darwinia Test
- stage: Darwinia ETHRELAY Test
env: RUST_TOOLCHAIN=nightly-2020-02-07 TARGET=native ETHRELAY
script: .maintain/ci/darwinia_test_script.sh eth-relay

- stage: Darwinia Test
- stage: Darwinia ETHBACKING Test
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Although there are only two workers in Travis free plan, it still can run concurrently with the same stage name.

env: RUST_TOOLCHAIN=nightly-2020-02-07 TARGET=native ETHBACKING
script: .maintain/ci/darwinia_test_script.sh eth-backing

- stage: Darwinia HEADERMMR Test
env: RUST_TOOLCHAIN=nightly-2020-02-07 TARGET=native HEADERMMR
script: .maintain/ci/darwinia_test_script.sh header-mmr

- stage: Darwinia Test
env: RUST_TOOLCHAIN=nightly-2020-02-07 TARGET=native ETHOFFCHAIN
script: .maintain/ci/darwinia_test_script.sh eth-offchain
Expand Down
Loading