mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-10 19:20:13 +00:00
Jenkins test
This commit is contained in:
parent
c820e9b453
commit
08a7e448a2
1 changed files with 29 additions and 0 deletions
29
Jenkinsfile
vendored
Normal file
29
Jenkinsfile
vendored
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
pipeline {
|
||||||
|
agent any
|
||||||
|
|
||||||
|
stages {
|
||||||
|
stage('Setup') {
|
||||||
|
steps {
|
||||||
|
echo 'Setting up...'
|
||||||
|
sh 'cp /usr/local/etc/roms/baserom_oot.z64 baserom.z64'
|
||||||
|
sh 'git submodule update --init --recursive'
|
||||||
|
sh 'make -C tools'
|
||||||
|
sh 'cp -r /usr/local/etc/ido/ido7.1_compiler tools/ido7.1_compiler'
|
||||||
|
sh 'chmod +x -R tools/ido*'
|
||||||
|
sh 'python3 extract_baserom.py'
|
||||||
|
sh 'python3 extract_assets.py'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('Build') {
|
||||||
|
steps {
|
||||||
|
echo 'Building...'
|
||||||
|
sh 'make'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
post {
|
||||||
|
always {
|
||||||
|
cleanWs()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue