From c820e9b4536c17841225dc97b7d9224e40bd89b1 Mon Sep 17 00:00:00 2001 From: Ethan Roseman Date: Tue, 17 Mar 2020 01:51:51 -0400 Subject: [PATCH 1/2] Updating ZAP2 --- tools/ZAP2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ZAP2 b/tools/ZAP2 index 72e492e90..4f9639445 160000 --- a/tools/ZAP2 +++ b/tools/ZAP2 @@ -1 +1 @@ -Subproject commit 72e492e908c1231b4b6269492a513bbdcc75498e +Subproject commit 4f9639445655f9754214dcb50821b046a316d70e From 08a7e448a20784c7a0948cce6636a4097e30eb4a Mon Sep 17 00:00:00 2001 From: Ethan Roseman Date: Tue, 17 Mar 2020 01:54:42 -0400 Subject: [PATCH 2/2] Jenkins test --- Jenkinsfile | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 000000000..2247df2d6 --- /dev/null +++ b/Jenkinsfile @@ -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() + } + } +}