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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 14 deletions

15
Jenkinsfile vendored
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'
}