Re-order the `make check` to ensure it passes first

The image building is very time consuming, so best to make sure we're working
with good bits to begin with
This commit is contained in:
R. Tyler Croy 2017-12-21 07:00:00 -08:00
parent a23bed3830
commit 9689dbd4df
No known key found for this signature in database
GPG Key ID: 1426C7DC3F51E16F
2 changed files with 13 additions and 5 deletions

10
Jenkinsfile vendored
View File

@ -8,6 +8,11 @@ pipeline {
}
stages {
stage('Test') {
steps {
sh 'make check'
}
}
stage('Create builder') {
steps {
sh 'make builder'
@ -30,11 +35,6 @@ pipeline {
}
}
}
stage('Test') {
steps {
sh 'make check'
}
}
}
post {
always {

View File

@ -10,3 +10,11 @@ has since been moved out to allow for more independent iteration on the master
image itself.
== Hacking
=== Prerequisites
* Git
* GNU/Make
* Docker
* Docker Compose