1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2024-11-14 21:40:03 +00:00

Use recomp instead of qemu-irix in Jenkins (#2014)

This commit is contained in:
cadmic 2024-08-03 18:43:26 -07:00 committed by GitHub
parent ff2abf36a1
commit 6c4935dc18
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

26
Jenkinsfile vendored
View file

@ -30,20 +30,7 @@ pipeline {
sh 'make -j setup'
}
}
stage('Build gc-eu-mq-dbg (qemu-irix)') {
when {
branch 'main'
}
steps {
sh 'make -j ORIG_COMPILER=1'
}
}
stage('Build gc-eu-mq-dbg') {
when {
not {
branch 'main'
}
}
steps {
sh 'make -j RUN_CC_CHECK=0'
}
@ -54,20 +41,7 @@ pipeline {
sh 'make -j setup VERSION=gc-eu-mq'
}
}
stage('Build gc-eu-mq (qemu-irix)') {
when {
branch 'main'
}
steps {
sh 'make -j VERSION=gc-eu-mq ORIG_COMPILER=1'
}
}
stage('Build gc-eu-mq') {
when {
not {
branch 'main'
}
}
steps {
sh 'make -j VERSION=gc-eu-mq RUN_CC_CHECK=0'
}