mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-10 19:20:13 +00:00
Updated jenkins file, readme, and replaced 'extract' target with 'setup'
This commit is contained in:
parent
ba92911833
commit
ec37636a7a
4 changed files with 4 additions and 7 deletions
6
Jenkinsfile
vendored
6
Jenkinsfile
vendored
|
@ -5,13 +5,11 @@ pipeline {
|
||||||
stage('Setup') {
|
stage('Setup') {
|
||||||
steps {
|
steps {
|
||||||
echo 'Setting up...'
|
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 'git submodule update --init --recursive'
|
||||||
sh 'make -C tools'
|
|
||||||
sh 'cp -r /usr/local/etc/ido/ido7.1_compiler tools/ido7.1_compiler'
|
sh 'cp -r /usr/local/etc/ido/ido7.1_compiler tools/ido7.1_compiler'
|
||||||
sh 'chmod +x -R tools/ido*'
|
sh 'chmod +x -R tools/ido*'
|
||||||
sh 'python3 extract_baserom.py'
|
sh 'make setup'
|
||||||
sh 'python3 extract_assets.py'
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Build') {
|
stage('Build') {
|
||||||
|
|
|
@ -14,6 +14,6 @@ This repo does not include all assets necessary for compiling the ROM. A prior c
|
||||||
This is a disassembly and decompilation of Legend of Zelda: Ocarina of Time Master Quest (debug)
|
This is a disassembly and decompilation of Legend of Zelda: Ocarina of Time Master Quest (debug)
|
||||||
|
|
||||||
It builds the following ROM:
|
It builds the following ROM:
|
||||||
* zelda_ocarina_mq_dbg.z64 `md5: 717179476af84133b14ff73af87db57a`
|
* zelda_ocarina_mq_dbg.z64 `md5: f0b7f35375f9cc8ca1b2d59d78e35405`
|
||||||
|
|
||||||
Please refer to the Getting Started guide in the Wiki for setup instructions.
|
Please refer to the Getting Started guide in the Wiki for setup instructions.
|
|
@ -1 +0,0 @@
|
||||||
717179476af84133b14ff73af87db57a zelda_ocarina_mq_dbg.z64
|
|
2
makefile
2
makefile
|
@ -129,7 +129,7 @@ build/undefined_syms.txt: undefined_syms.txt
|
||||||
clean:
|
clean:
|
||||||
$(RM) $(ROM) $(ELF) -r build
|
$(RM) $(ROM) $(ELF) -r build
|
||||||
|
|
||||||
extract:
|
setup:
|
||||||
make -C tools
|
make -C tools
|
||||||
python3 fixbaserom.py
|
python3 fixbaserom.py
|
||||||
python3 extract_baserom.py
|
python3 extract_baserom.py
|
||||||
|
|
Loading…
Reference in a new issue