Jenkinsfile now builds master with qemu IDO

This commit is contained in:
Kenix3 2021-03-09 17:40:52 -05:00
parent c8e9e78e78
commit a23213c08c

11
Jenkinsfile vendored
View File

@ -2,14 +2,21 @@ pipeline {
agent any agent any
stages { stages {
stage('Copy ROM') { stage('Copy ROM') {
steps { steps {
echo 'Setting up ROM...' echo 'Setting up ROM...'
sh 'cp /usr/local/etc/roms/baserom_mm.z64 baserom.z64' sh 'cp /usr/local/etc/roms/baserom_mm.z64 baserom.z64'
} }
} }
stage('Build') { stage('Build (qemu-irix)') {
when {
branch 'master'
}
steps {
sh 'ORIG_COMPILER=1 make -j init'
}
}
stage('Build (ido-recomp)') {
when { when {
not { not {
branch 'master' branch 'master'