mirror of
https://github.com/zeldaret/mm.git
synced 2026-05-28 16:30:54 -04:00
194c99d80b
* a
* git subrepo pull tools/asm-differ --force
subrepo:
subdir: "tools/asm-differ"
merged: "6f8f80b71"
upstream:
origin: "https://github.com/simonlindholm/asm-differ"
branch: "main"
commit: "6f8f80b71"
git-subrepo:
version: "0.4.3"
origin: "https://github.com/ingydotnet/git-subrepo.git"
commit: "2f68596"
* git subrepo pull tools/z64compress --force
subrepo:
subdir: "tools/z64compress"
merged: "9e7a6dbfa"
upstream:
origin: "https://github.com/z64me/z64compress.git"
branch: "main"
commit: "9e7a6dbfa"
git-subrepo:
version: "0.4.3"
origin: "https://github.com/ingydotnet/git-subrepo.git"
commit: "2f68596"
* git subrepo pull tools/ZAPD --force
subrepo:
subdir: "tools/ZAPD"
merged: "bf16ff7c4"
upstream:
origin: "https://github.com/zeldaret/ZAPD.git"
branch: "master"
commit: "bf16ff7c4"
git-subrepo:
version: "0.4.3"
origin: "https://github.com/ingydotnet/git-subrepo.git"
commit: "2f68596"
* Revert "git subrepo pull tools/z64compress --force"
This reverts commit a7cc87394e.
98 lines
2.9 KiB
Groovy
98 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()
|
|
}
|
|
}
|
|
}
|