mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-10 19:20:13 +00:00
6f54edd365
* Ido Recomp test * try 2 * Recomp by default * Fix Jenkinsfile * Fix 2 * CFE errors * CFE fix -O2 * Update Makefile Co-authored-by: Roman971 <32455037+Roman971@users.noreply.github.com> * Update README.md Co-authored-by: Roman971 <32455037+Roman971@users.noreply.github.com> * Update README.md Co-authored-by: Roman971 <32455037+Roman971@users.noreply.github.com> * PR suggestions * PR updates Co-authored-by: Roman971 <32455037+Roman971@users.noreply.github.com>
50 lines
1.2 KiB
Groovy
50 lines
1.2 KiB
Groovy
pipeline {
|
|
agent any
|
|
|
|
stages {
|
|
stage('Check for unused asm') {
|
|
steps {
|
|
sh './tools/find_unused_asm.sh'
|
|
}
|
|
}
|
|
stage('Setup') {
|
|
steps {
|
|
echo 'Setting up...'
|
|
sh 'cp /usr/local/etc/roms/baserom_oot.z64 baserom_original.z64'
|
|
sh 'make -j setup'
|
|
}
|
|
}
|
|
stage('Build (qemu-irix)') {
|
|
when {
|
|
branch 'master'
|
|
}
|
|
steps {
|
|
sh 'ORIG_COMPILER=1 make -j'
|
|
}
|
|
}
|
|
stage('Build') {
|
|
when {
|
|
not {
|
|
branch 'master'
|
|
}
|
|
}
|
|
steps {
|
|
sh 'make -j'
|
|
}
|
|
}
|
|
stage('Report Progress') {
|
|
when {
|
|
branch 'master'
|
|
}
|
|
steps {
|
|
sh 'python3 progress.py -c >> /var/www/html/reports/progress.csv'
|
|
sh 'python3 progress.py -mc >> /var/www/html/reports/progress_matching.csv'
|
|
}
|
|
}
|
|
}
|
|
post {
|
|
always {
|
|
cleanWs()
|
|
}
|
|
}
|
|
}
|