mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-10 19:20:13 +00:00
5dd19e4862
* Use virtualenv in Makefile for python dependencies * Create separate targets for venv creation and installation * Fix install-python-deps prerequisite * Try simplifying Jenkinsfile * Simplify venv targets * Fix merge * Update README.md Co-authored-by: Dragorn421 <Dragorn421@users.noreply.github.com> --------- Co-authored-by: Dragorn421 <Dragorn421@users.noreply.github.com>
71 lines
2.1 KiB
Groovy
71 lines
2.1 KiB
Groovy
pipeline {
|
|
agent {
|
|
label 'oot'
|
|
}
|
|
|
|
stages {
|
|
stage('Setup') {
|
|
steps {
|
|
sh 'cp /usr/local/etc/roms/baserom_oot.z64 baseroms/gc-eu-mq-dbg/baserom.z64'
|
|
sh 'make -j setup'
|
|
}
|
|
}
|
|
stage('Build (qemu-irix)') {
|
|
when {
|
|
branch 'main'
|
|
}
|
|
steps {
|
|
sh 'make -j ORIG_COMPILER=1'
|
|
}
|
|
}
|
|
stage('Build') {
|
|
when {
|
|
not {
|
|
branch 'main'
|
|
}
|
|
}
|
|
steps {
|
|
sh 'make -j'
|
|
}
|
|
}
|
|
stage('Report Progress') {
|
|
when {
|
|
branch 'main'
|
|
}
|
|
steps {
|
|
sh 'mkdir reports'
|
|
sh 'python3 progress.py csv >> reports/progress-oot-nonmatching.csv'
|
|
sh 'python3 progress.py csv -m >> reports/progress-oot-matching.csv'
|
|
sh 'python3 progress.py shield-json > reports/progress-oot-shield.json'
|
|
stash includes: 'reports/*', name: 'reports'
|
|
}
|
|
}
|
|
stage('Update Progress') {
|
|
when {
|
|
branch 'main'
|
|
}
|
|
agent {
|
|
label 'zeldaret_website'
|
|
}
|
|
steps {
|
|
unstash 'reports'
|
|
sh 'cat reports/progress-oot-nonmatching.csv >> /var/www/zelda64.dev/assets/csv/progress-oot-nonmatching.csv'
|
|
sh 'cat reports/progress-oot-matching.csv >> /var/www/zelda64.dev/assets/csv/progress-oot-matching.csv'
|
|
sh 'cat reports/progress-oot-shield.json > /var/www/zelda64.dev/assets/csv/progress-oot-shield.json'
|
|
}
|
|
}
|
|
}
|
|
post {
|
|
always {
|
|
echo "Finished, deleting directory."
|
|
deleteDir()
|
|
}
|
|
cleanup {
|
|
echo "Clean up in post."
|
|
cleanWs(cleanWhenNotBuilt: false,
|
|
deleteDirs: true,
|
|
disableDeferredWipeout: true,
|
|
notFailBuild: true)
|
|
}
|
|
}
|
|
}
|