mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-11 03:39:59 +00:00
9b67778a00
* git subrepo pull (merge) tools/ZAPD subrepo: subdir: "tools/ZAPD" merged: "945e6ca1a" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "50242eca9" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "2f68596" * Fix extract_assets.py multithreading * Update binutils doc a bit * Remove * import, add multiprocessing option and way to pass arguments to ZAPD * Update format.sh to be more platform-independent * git subrepo pull --force tools/ZAPD subrepo: subdir: "tools/ZAPD" merged: "fd5a7f434" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "fd5a7f434" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "2f68596" * Remove ; * Update formatting script to not just use 11 * Add Python requirements, move the Mac stuff in the README into its own doc * Fix readme link * Minor format thing * . * Move ZAPDArgs into its own function * Update readme and remove requirements.txt * Dragorn-inspired rewrite of processZAPDArgs * git subrepo pull --force tools/ZAPD subrepo: subdir: "tools/ZAPD" merged: "a0d3f7b68" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "a0d3f7b68" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "2f68596" * Fix function definition * Building docs overhaul * Add Python packages to Mac and Cygwin * Heading number * format format.sh (!) * Replace "currently" * Remove Debian * git subrepo pull (merge) --force tools/ZAPD subrepo: subdir: "tools/ZAPD" merged: "0ba781304" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "0ba781304" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "2f68596"
97 lines
2.9 KiB
Groovy
97 lines
2.9 KiB
Groovy
pipeline {
|
|
agent {
|
|
label 'ZAPD'
|
|
}
|
|
|
|
stages {
|
|
// Non-parallel ZAPD stage
|
|
stage('Build ZAPD') {
|
|
steps {
|
|
sh 'make -j WERROR=1'
|
|
}
|
|
}
|
|
|
|
// CHECKOUT THE REPOS
|
|
stage('Checkout Repos') {
|
|
parallel {
|
|
stage('Checkout oot') {
|
|
steps {
|
|
dir('oot') {
|
|
git url: 'https://github.com/zeldaret/oot.git'
|
|
}
|
|
}
|
|
}
|
|
|
|
stage('Checkout mm') {
|
|
steps{
|
|
dir('mm') {
|
|
git url: 'https://github.com/zeldaret/mm.git'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// SETUP THE REPOS
|
|
stage('Set up repos') {
|
|
parallel {
|
|
stage('Setup OOT') {
|
|
steps {
|
|
dir('oot') {
|
|
sh 'cp /usr/local/etc/roms/baserom_oot.z64 baserom_original.z64'
|
|
|
|
// Identical to `make setup` except for copying our newer ZAPD.out into oot
|
|
sh 'git submodule update --init --recursive'
|
|
sh 'make -C tools'
|
|
sh 'cp ../ZAPD.out tools/ZAPD/'
|
|
sh 'python3 fixbaserom.py'
|
|
sh 'python3 extract_baserom.py'
|
|
sh 'python3 extract_assets.py'
|
|
}
|
|
}
|
|
}
|
|
|
|
stage('Setup MM') {
|
|
steps {
|
|
dir('mm') {
|
|
sh 'cp /usr/local/etc/roms/mm.us.rev1.z64 baserom.mm.us.rev1.z64'
|
|
|
|
// Identical to `make setup` except for copying our newer ZAPD.out into mm
|
|
sh 'make -C tools'
|
|
sh 'cp ../ZAPD.out tools/ZAPD/'
|
|
sh 'python3 tools/fixbaserom.py'
|
|
sh 'python3 tools/extract_baserom.py'
|
|
sh 'python3 extract_assets.py -j $(nproc)'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// BUILD THE REPOS
|
|
stage('Build repos') {
|
|
parallel {
|
|
stage('Build oot') {
|
|
steps {
|
|
dir('oot') {
|
|
sh 'make -j'
|
|
}
|
|
}
|
|
}
|
|
stage('Build mm') {
|
|
steps {
|
|
dir('mm') {
|
|
sh 'make -j disasm'
|
|
sh 'make -j all'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
post {
|
|
always {
|
|
cleanWs()
|
|
}
|
|
}
|
|
}
|