diff --git a/Jenkinsfile b/Jenkinsfile index b62a80a6..bd7b99ea 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -8,12 +8,15 @@ pipeline { steps { sh 'cd ${AGBCC} && ./install.sh ${WORKSPACE} && cd ${WORKSPACE}' sh 'cp /usr/local/etc/roms/tmc.us.gba baserom.gba' + sh 'cp /usr/local/etc/roms/tmc.demo.gba baserom_demo.gba' + sh 'cp /usr/local/etc/roms/tmc.jp.gba baserom_jp.gba' + sh 'cp /usr/local/etc/roms/tmc.eu.gba baserom_eu.gba' sh 'make -j setup' } } stage('Build') { steps { - sh 'make -j' + sh 'make usa demo jp eu -j' } } stage('Report Progress') {