Jenkinsfile no longer builds master with qemu (#66)

This commit is contained in:
Kenix3
2021-03-10 23:03:58 -05:00
committed by GitHub
parent a858d26e10
commit e788bfecbf
Vendored
+1 -14
View File
@@ -8,20 +8,7 @@ pipeline {
sh 'cp /usr/local/etc/roms/mm.us.rev1.z64 baserom.z64'
}
}
stage('Build (qemu-irix)') {
when {
branch 'master'
}
steps {
sh 'ORIG_COMPILER=1 make -j init'
}
}
stage('Build (ido-recomp)') {
when {
not {
branch 'master'
}
}
stage('Build') {
steps {
sh 'make -j init'
}