1
0
mirror of https://github.com/blawar/ooot.git synced 2024-06-30 16:29:55 +00:00

Merge pull request #1 from ethteck/jenkins-test

Jenkins test
This commit is contained in:
Nicholas Estelami 2020-03-17 14:38:37 -04:00 committed by GitHub
commit 2c7a339a81
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 30 additions and 1 deletions

29
Jenkinsfile vendored Normal file
View 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()
}
}
}

@ -1 +1 @@
Subproject commit 72e492e908c1231b4b6269492a513bbdcc75498e
Subproject commit 4f9639445655f9754214dcb50821b046a316d70e