Fix cargo cmd in Jenkinsfile

This commit is contained in:
Paul Hauner 2019-04-24 11:37:19 +10:00
parent 5e81a995ea
commit ab75f7cbc7
No known key found for this signature in database
GPG Key ID: D362883A9218FCC6

2
Jenkinsfile vendored
View File

@ -24,7 +24,7 @@ pipeline {
sh 'cargo test --verbose --all' sh 'cargo test --verbose --all'
sh 'cargo test --verbose --all --release' sh 'cargo test --verbose --all --release'
sh 'cargo test --manifest-path eth2/state_processing/Cargo.toml --verbose \ sh 'cargo test --manifest-path eth2/state_processing/Cargo.toml --verbose \
--release --features fake_crypto --ignored' --release --features fake_crypto -- --include-ignored'
} }
} }