Make sure we check out scm, duh

This commit is contained in:
R. Tyler Croy 2017-12-14 13:25:13 -08:00
parent ab88780a7b
commit fecdabab95
No known key found for this signature in database
GPG Key ID: 1426C7DC3F51E16F
1 changed files with 2 additions and 0 deletions

View File

@ -18,6 +18,7 @@ def call(String platform) {
stage('Debian Linux') {
agent { docker 'maven:slim' }
steps {
checkout scm
sh 'mvn test -B'
}
post {
@ -30,6 +31,7 @@ def call(String platform) {
stage('Alpine Linux') {
agent { docker 'maven:3-alpine' }
steps {
checkout scm
sh 'mvn test -B'
}
post {