lighthouse/Jenkinsfile

21 lines
331 B
Plaintext
Raw Normal View History

2019-01-09 08:44:37 +00:00
pipeline {
agent {
dockerfile {
filename 'Dockerfile'
args '-v cargo-cache:/cargocache:rw -e "CARGO_HOME=/cargocache"'
}
}
2019-01-09 08:44:37 +00:00
stages {
stage('Build') {
2019-01-09 08:44:37 +00:00
steps {
sh 'cargo build'
}
}
stage('Test') {
steps {
sh 'cargo test --all'
}
}
2019-01-09 08:44:37 +00:00
}
}