[nostalgia/jenkins] Fix GBA Jenkinsfile

This commit is contained in:
Gary Talent 2020-06-13 04:12:51 -05:00
parent 9e624619b3
commit 77ece05bf1

View File

@ -21,9 +21,9 @@ pipeline {
} }
stage('Build GBA Debug') { stage('Build GBA Debug') {
steps { steps {
sh 'make purge configure-gba' sh 'make configure-gba-debug'
sh 'make' sh 'make'
sh 'make pkg-gba-debug' sh 'make pkg-gba'
} }
} }
stage('Build Tools Release') { stage('Build Tools Release') {
@ -34,7 +34,7 @@ pipeline {
} }
stage('Build GBA Release') { stage('Build GBA Release') {
steps { steps {
sh 'make purge configure-gba' sh 'make configure-gba'
sh 'make' sh 'make'
sh 'make pkg-gba' sh 'make pkg-gba'
} }