Add other versions to CI build

This commit is contained in:
Ibot02 2021-06-23 23:19:25 +02:00
parent 300169514a
commit 7acca3a826
1 changed files with 4 additions and 1 deletions

5
Jenkinsfile vendored
View File

@ -8,12 +8,15 @@ pipeline {
steps { steps {
sh 'cd ${AGBCC} && ./install.sh ${WORKSPACE} && cd ${WORKSPACE}' 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.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' sh 'make -j setup'
} }
} }
stage('Build') { stage('Build') {
steps { steps {
sh 'make -j' sh 'make usa demo jp eu -j'
} }
} }
stage('Report Progress') { stage('Report Progress') {