1
0
mirror of https://github.com/zeldaret/oot.git synced 2024-09-21 04:24:43 +00:00
oot/Jenkinsfile

27 lines
610 B
Plaintext
Raw Normal View History

2020-03-17 05:54:42 +00:00
pipeline {
agent any
stages {
stage('Setup') {
steps {
echo 'Setting up...'
sh 'cp /usr/local/etc/roms/baserom_oot.z64 baserom_original.z64'
2020-03-17 05:54:42 +00:00
sh 'cp -r /usr/local/etc/ido/ido7.1_compiler tools/ido7.1_compiler'
sh 'chmod +x -R tools/ido*'
2020-04-05 16:18:58 +00:00
sh 'make -j`nproc` setup'
2020-03-17 05:54:42 +00:00
}
}
stage('Build') {
steps {
echo 'Building...'
2020-04-05 16:12:25 +00:00
sh 'make -j`nproc`'
2020-03-17 05:54:42 +00:00
}
}
}
post {
always {
cleanWs()
}
}
}