Merge branch 'master' into age-validator-client

This commit is contained in:
Age Manning 2019-03-28 17:45:17 +11:00
commit 299e6a0f89
No known key found for this signature in database
GPG Key ID: 05EED64B79E06A93

6
Jenkinsfile vendored
View File

@ -8,12 +8,14 @@ pipeline {
stages {
stage('Build') {
steps {
sh 'cargo build'
sh 'cargo build --verbose --all'
sh 'cargo build --verbose --all --release'
}
}
stage('Test') {
steps {
sh 'cargo test --all'
sh 'cargo test --verbose --all'
sh 'cargo test --verbose --all --release'
}
}
}