Merge branch 'master' into simple-cached-tree-hash
This commit is contained in:
commit
461f3d2382
@ -1,4 +1,9 @@
|
||||
language: rust
|
||||
cache:
|
||||
directories:
|
||||
- /home/travis/.cargo
|
||||
before_cache:
|
||||
- rm -rf /home/travis/.cargo/registry
|
||||
before_install:
|
||||
- curl -OL https://github.com/google/protobuf/releases/download/v3.4.0/protoc-3.4.0-linux-x86_64.zip
|
||||
- unzip protoc-3.4.0-linux-x86_64.zip -d protoc3
|
||||
|
4
Jenkinsfile
vendored
4
Jenkinsfile
vendored
@ -24,7 +24,9 @@ pipeline {
|
||||
sh 'cargo test --verbose --all'
|
||||
sh 'cargo test --verbose --all --release'
|
||||
sh 'cargo test --manifest-path eth2/state_processing/Cargo.toml --verbose \
|
||||
--release --features fake_crypto --ignored'
|
||||
--release --features fake_crypto'
|
||||
sh 'cargo test --manifest-path eth2/state_processing/Cargo.toml --verbose \
|
||||
--release --features fake_crypto -- --ignored'
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -8,7 +8,7 @@
|
||||
//! producing blocks and attestations.
|
||||
//!
|
||||
//! Example:
|
||||
//! ```
|
||||
//! ```rust,no_run
|
||||
//! use test_harness::BeaconChainHarness;
|
||||
//! use types::ChainSpec;
|
||||
//!
|
||||
|
Loading…
Reference in New Issue
Block a user