canary/Jenkinsfile

28 lines
530 B
Plaintext
Raw Normal View History

2017-08-26 18:46:08 +00:00
#!/usr/bin/env groovy
pipeline {
agent { label 'docker' }
2017-08-26 18:46:08 +00:00
stages {
stage('Prepare') {
2017-08-26 18:46:08 +00:00
steps {
sh 'make depends'
}
}
stage('Test') {
steps {
sh 'make check'
}
post {
always {
archiveArtifacts 'rspec.html'
}
}
}
stage('Build container') {
steps {
sh 'make container'
2017-08-26 18:46:08 +00:00
}
}
}
}