1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-10-19 21:19:54 +00:00

Updated jenkins file, readme, and replaced 'extract' target with 'setup'

This commit is contained in:
Jack Walker 2020-03-28 17:34:57 -04:00
commit ec37636a7a
4 changed files with 4 additions and 7 deletions

6
Jenkinsfile vendored
View file

@ -5,13 +5,11 @@ pipeline {
stage('Setup') {
steps {
echo 'Setting up...'
sh 'cp /usr/local/etc/roms/baserom_oot.z64 baserom.z64'
sh 'cp /usr/local/etc/roms/baserom_oot.z64 baserom_original.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'
sh 'make setup'
}
}
stage('Build') {