2020-03-17 05:54:42 +00:00
|
|
|
pipeline {
|
2021-03-23 01:17:02 +00:00
|
|
|
agent {
|
|
|
|
label 'oot'
|
|
|
|
}
|
2020-03-17 05:54:42 +00:00
|
|
|
|
|
|
|
stages {
|
2024-01-31 03:25:24 +00:00
|
|
|
stage('Check formatting (full)') {
|
|
|
|
when {
|
|
|
|
branch 'main'
|
|
|
|
}
|
|
|
|
steps {
|
|
|
|
echo 'Checking formatting on all files...'
|
2024-01-31 23:05:33 +00:00
|
|
|
sh 'python3 tools/check_format.py'
|
2024-01-31 03:25:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('Check formatting (modified)') {
|
|
|
|
when {
|
|
|
|
not {
|
|
|
|
branch 'main'
|
|
|
|
}
|
|
|
|
}
|
2024-01-29 12:25:58 +00:00
|
|
|
steps {
|
2024-09-08 22:27:36 +00:00
|
|
|
catchError(buildResult: 'FAILURE', stageResult: 'FAILURE') {
|
|
|
|
echo 'Checking formatting on modified files...'
|
|
|
|
sh 'python3 tools/check_format.py --verbose --compare-to origin/main'
|
|
|
|
}
|
2024-01-29 12:25:58 +00:00
|
|
|
}
|
|
|
|
}
|
2024-08-15 03:39:34 +00:00
|
|
|
// The ROMs are built in an order that maximizes compiler flags coverage in a "fail fast" approach.
|
|
|
|
// Specifically we start with a retail ROM for BSS ordering, and make sure we cover all of
|
2024-09-12 18:10:43 +00:00
|
|
|
// N64/GC/NTSC/PAL/MQ/DEBUG as quickly as possible.
|
2024-11-12 22:39:08 +00:00
|
|
|
stage('Build ntsc-1.0') {
|
2024-09-12 18:10:43 +00:00
|
|
|
steps {
|
|
|
|
script {
|
2024-11-12 22:39:08 +00:00
|
|
|
build('ntsc-1.0', 'oot-ntsc-1.0-us.z64')
|
2024-09-12 18:10:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-08-15 03:39:34 +00:00
|
|
|
stage('Build gc-jp') {
|
2020-03-17 05:54:42 +00:00
|
|
|
steps {
|
2024-09-08 22:27:36 +00:00
|
|
|
script {
|
2024-09-12 18:10:43 +00:00
|
|
|
build('gc-jp', 'oot-gc-jp.z64')
|
2024-09-08 22:27:36 +00:00
|
|
|
}
|
|
|
|
}
|
2020-08-22 23:06:52 +00:00
|
|
|
}
|
2024-08-15 03:39:34 +00:00
|
|
|
stage('Build gc-eu-mq') {
|
2020-03-17 05:54:42 +00:00
|
|
|
steps {
|
2024-09-08 22:27:36 +00:00
|
|
|
script {
|
2024-09-12 18:10:43 +00:00
|
|
|
build('gc-eu-mq', 'oot-gc-eu-mq.z64')
|
2024-09-08 22:27:36 +00:00
|
|
|
}
|
2020-03-17 05:54:42 +00:00
|
|
|
}
|
|
|
|
}
|
2024-08-15 03:39:34 +00:00
|
|
|
stage('Build gc-eu-mq-dbg') {
|
2024-04-20 04:12:26 +00:00
|
|
|
steps {
|
2024-09-08 22:27:36 +00:00
|
|
|
script {
|
2024-09-12 18:10:43 +00:00
|
|
|
build('gc-eu-mq-dbg', 'oot-gc-eu-mq-dbg.z64')
|
2024-09-08 22:27:36 +00:00
|
|
|
}
|
2024-04-20 04:12:26 +00:00
|
|
|
}
|
|
|
|
}
|
2024-09-29 00:52:45 +00:00
|
|
|
stage('Build pal-1.0') {
|
|
|
|
steps {
|
|
|
|
script {
|
|
|
|
build('pal-1.0', 'oot-pal-1.0.z64')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-11-12 22:39:08 +00:00
|
|
|
stage('Build ntsc-1.2') {
|
|
|
|
steps {
|
|
|
|
script {
|
|
|
|
build('ntsc-1.2', 'oot-ntsc-1.2-us.z64')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-08-15 03:39:34 +00:00
|
|
|
stage('Build gc-us') {
|
2024-04-20 04:12:26 +00:00
|
|
|
steps {
|
2024-09-08 22:27:36 +00:00
|
|
|
script {
|
2024-09-12 18:10:43 +00:00
|
|
|
build('gc-us', 'oot-gc-us.z64')
|
2024-09-08 22:27:36 +00:00
|
|
|
}
|
2024-04-20 04:12:26 +00:00
|
|
|
}
|
|
|
|
}
|
2024-08-15 03:39:34 +00:00
|
|
|
stage('Build gc-jp-ce') {
|
2020-05-26 20:36:30 +00:00
|
|
|
steps {
|
2024-09-08 22:27:36 +00:00
|
|
|
script {
|
2024-09-12 18:10:43 +00:00
|
|
|
build('gc-jp-ce', 'oot-gc-jp-ce.z64')
|
2024-09-08 22:27:36 +00:00
|
|
|
}
|
2021-03-23 01:17:02 +00:00
|
|
|
}
|
|
|
|
}
|
2024-08-15 03:39:34 +00:00
|
|
|
stage('Build gc-eu') {
|
|
|
|
steps {
|
2024-09-08 22:27:36 +00:00
|
|
|
script {
|
2024-09-12 18:10:43 +00:00
|
|
|
build('gc-eu', 'oot-gc-eu.z64')
|
2024-09-08 22:27:36 +00:00
|
|
|
}
|
2021-03-23 01:17:02 +00:00
|
|
|
}
|
2024-08-15 03:39:34 +00:00
|
|
|
}
|
|
|
|
stage('Build gc-jp-mq') {
|
|
|
|
steps {
|
2024-09-08 22:27:36 +00:00
|
|
|
script {
|
2024-09-12 18:10:43 +00:00
|
|
|
build('gc-jp-mq', 'oot-gc-jp-mq.z64')
|
2024-09-08 22:27:36 +00:00
|
|
|
}
|
2021-03-23 01:17:02 +00:00
|
|
|
}
|
2024-08-15 03:39:34 +00:00
|
|
|
}
|
2024-09-29 00:52:45 +00:00
|
|
|
stage('Build pal-1.1') {
|
|
|
|
steps {
|
|
|
|
script {
|
|
|
|
build('pal-1.1', 'oot-pal-1.1.z64')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-11-12 22:39:08 +00:00
|
|
|
stage('Build ntsc-1.1') {
|
|
|
|
steps {
|
|
|
|
script {
|
|
|
|
build('ntsc-1.1', 'oot-ntsc-1.1-us.z64')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-08-15 03:39:34 +00:00
|
|
|
stage('Build gc-us-mq') {
|
2021-03-23 01:17:02 +00:00
|
|
|
steps {
|
2024-09-08 22:27:36 +00:00
|
|
|
script {
|
2024-09-12 18:10:43 +00:00
|
|
|
build('gc-us-mq', 'oot-gc-us-mq.z64')
|
2024-09-08 22:27:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('Generate patch') {
|
|
|
|
when {
|
|
|
|
not {
|
|
|
|
branch 'main'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
steps {
|
|
|
|
sh 'git diff'
|
|
|
|
echo 'Generating patch...'
|
|
|
|
sh 'tools/generate_patch_from_jenkins.sh'
|
2020-05-26 20:36:30 +00:00
|
|
|
}
|
|
|
|
}
|
2020-03-17 05:54:42 +00:00
|
|
|
}
|
|
|
|
post {
|
|
|
|
always {
|
2022-12-20 05:13:52 +00:00
|
|
|
echo "Finished, deleting directory."
|
|
|
|
deleteDir()
|
|
|
|
}
|
|
|
|
cleanup {
|
|
|
|
echo "Clean up in post."
|
|
|
|
cleanWs(cleanWhenNotBuilt: false,
|
|
|
|
deleteDirs: true,
|
|
|
|
disableDeferredWipeout: true,
|
|
|
|
notFailBuild: true)
|
2020-03-17 05:54:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-09-08 22:27:36 +00:00
|
|
|
|
2024-09-12 18:10:43 +00:00
|
|
|
def build(String version, String rom) {
|
|
|
|
sh "ln -s /usr/local/etc/roms/${rom} baseroms/${version}/baserom.z64"
|
2024-09-08 22:27:36 +00:00
|
|
|
sh "make -j\$(nproc) setup VERSION=${version}"
|
|
|
|
try {
|
|
|
|
sh "make -j\$(nproc) VERSION=${version}"
|
|
|
|
} catch (e) {
|
|
|
|
echo "Build failed, attempting to fix BSS ordering..."
|
|
|
|
sh ".venv/bin/python3 tools/fix_bss.py -v ${version}"
|
|
|
|
// If fix_bss.py succeeds, continue the build, but ensure both the build and current stage are marked as failed
|
|
|
|
catchError(buildResult: 'FAILURE', stageResult: 'FAILURE') {
|
|
|
|
sh 'exit 1'
|
|
|
|
}
|
|
|
|
} finally {
|
|
|
|
sh "make clean assetclean VERSION=${version}"
|
|
|
|
}
|
|
|
|
}
|