Added the release and debug build/tests to Jenkins, as well as Travis.
This commit is contained in:
parent
7cbee46227
commit
13872dfbb9
22
Jenkinsfile
vendored
22
Jenkinsfile
vendored
@ -1,20 +1,22 @@
|
||||
pipeline {
|
||||
agent {
|
||||
agent {
|
||||
dockerfile {
|
||||
filename 'Dockerfile'
|
||||
args '-v cargo-cache:/cargocache:rw -e "CARGO_HOME=/cargocache"'
|
||||
}
|
||||
}
|
||||
stages {
|
||||
stage('Build') {
|
||||
steps {
|
||||
sh 'cargo build'
|
||||
}
|
||||
}
|
||||
stage('Test') {
|
||||
stages {
|
||||
stage('Build') {
|
||||
steps {
|
||||
sh 'cargo test --all'
|
||||
sh 'cargo build --verbose --all'
|
||||
sh 'cargo build --verbose --all --release'
|
||||
}
|
||||
}
|
||||
}
|
||||
stage('Test') {
|
||||
steps {
|
||||
sh 'cargo test --verbose --all'
|
||||
sh 'cargo test --verbose --all --release'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user