mirror of
https://github.com/zeldaret/mm.git
synced 2024-11-23 12:59:44 +00:00
Jenkinsfile now builds master with qemu IDO
This commit is contained in:
parent
c8e9e78e78
commit
a23213c08c
11
Jenkinsfile
vendored
11
Jenkinsfile
vendored
@ -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'
|
||||||
|
Loading…
Reference in New Issue
Block a user