mirror of
https://github.com/zeldaret/mm.git
synced 2026-05-23 06:54:14 -04:00
Jenkinsfile now builds master with qemu IDO
This commit is contained in:
Vendored
+9
-2
@@ -2,14 +2,21 @@ pipeline {
|
||||
agent any
|
||||
|
||||
stages {
|
||||
|
||||
stage('Copy ROM') {
|
||||
steps {
|
||||
echo 'Setting up ROM...'
|
||||
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 {
|
||||
not {
|
||||
branch 'master'
|
||||
|
||||
Reference in New Issue
Block a user