[nostalgia] Fix build configuration commands in Jenkinsfile

This commit is contained in:
Gary Talent 2019-10-22 23:57:48 -05:00
parent 9147a91cc0
commit 3bc48c04f7

2
Jenkinsfile vendored
View File

@ -3,7 +3,7 @@ pipeline {
stages { stages {
stage('Build') { stage('Build') {
steps { steps {
sh 'make release' sh 'make configure-debug configure-release'
sh 'make' sh 'make'
} }
} }