From 53c5ad254897edad68bb7b4e66881946734cd91a Mon Sep 17 00:00:00 2001 From: josue Date: Thu, 11 Jun 2026 15:56:45 +0200 Subject: [PATCH] Rename build-osx-bundle.py to build-macos-bundle.py After the git migration build-osx-libs.sh was renamed to build-macos-libs.sh, but the bundle script kept the old OS X naming. Rename it to match and update the references in the bundles Jenkins pipeline. Also add josue to the programming credits (first contribution). Fixes #7546 Co-Authored-By: Claude Fable 5 --- .../data/mods/public/gui/credits/texts/programming.json | 1 + build/jenkins/pipelines/bundles.Jenkinsfile | 6 +++--- .../dist/{build-osx-bundle.py => build-macos-bundle.py} | 0 3 files changed, 4 insertions(+), 3 deletions(-) rename source/tools/dist/{build-osx-bundle.py => build-macos-bundle.py} (100%) diff --git a/binaries/data/mods/public/gui/credits/texts/programming.json b/binaries/data/mods/public/gui/credits/texts/programming.json index 13100b3e8c..0a4f3944b7 100644 --- a/binaries/data/mods/public/gui/credits/texts/programming.json +++ b/binaries/data/mods/public/gui/credits/texts/programming.json @@ -154,6 +154,7 @@ { "nick": "JonBaer", "name": "Jon Baer" }, { "nick": "Josh", "name": "Joshua J. Bakita" }, { "nick": "joskar", "name": "Johnny Oskarsson" }, + { "nick": "josue", "name": "Josue Valencia" }, { "nick": "jP_wanN", "name": "Jonas Platte" }, { "nick": "jprahman", "name": "Jason Rahman" }, { "nick": "jpshack", "name": "John-Mason Shackelford" }, diff --git a/build/jenkins/pipelines/bundles.Jenkinsfile b/build/jenkins/pipelines/bundles.Jenkinsfile index 3a954616b0..986799d4c9 100644 --- a/build/jenkins/pipelines/bundles.Jenkinsfile +++ b/build/jenkins/pipelines/bundles.Jenkinsfile @@ -1,4 +1,4 @@ -/* Copyright (C) 2025 Wildfire Games. +/* Copyright (C) 2026 Wildfire Games. * This file is part of 0 A.D. * * 0 A.D. is free software: you can redistribute it and/or modify @@ -93,7 +93,7 @@ pipeline { { sh ''' security unlock-keychain -p ${KEYCHAIN_PW} login.keychain - /opt/wfg/venv/bin/python3 source/tools/dist/build-osx-bundle.py \ + /opt/wfg/venv/bin/python3 source/tools/dist/build-macos-bundle.py \ --min_osx=${MIN_OSX_VERSION} \ -s ${SIGNKEY_SHA} \ --notarytool_user=${NOTARIZATION_USER} \ @@ -129,7 +129,7 @@ pipeline { { sh ''' security unlock-keychain -p ${KEYCHAIN_PW} login.keychain - /opt/wfg/venv/bin/python3 source/tools/dist/build-osx-bundle.py \ + /opt/wfg/venv/bin/python3 source/tools/dist/build-macos-bundle.py \ --architecture=x86_64 \ --min_osx=${MIN_OSX_VERSION} \ -s ${SIGNKEY_SHA} \ diff --git a/source/tools/dist/build-osx-bundle.py b/source/tools/dist/build-macos-bundle.py similarity index 100% rename from source/tools/dist/build-osx-bundle.py rename to source/tools/dist/build-macos-bundle.py