[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') {
steps {
sh 'make purge configure-gba'
sh 'make configure-gba-debug'
sh 'make'
sh 'make pkg-gba-debug'
sh 'make pkg-gba'
}
}
stage('Build Tools Release') {
@ -34,7 +34,7 @@ pipeline {
}
stage('Build GBA Release') {
steps {
sh 'make purge configure-gba'
sh 'make configure-gba'
sh 'make'
sh 'make pkg-gba'
}