From c429a883152457df491b5c54c358108f75fc606a Mon Sep 17 00:00:00 2001 From: Tom Butcher Date: Sat, 1 Aug 2026 21:29:44 +0100 Subject: [PATCH] Fix macOS arm64 build command in Jenkinsfile - Updated the macOS arm64 build command to use the correct label for architecture compatibility, ensuring proper execution during the build process. --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 0357bc6..e3a88df 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -150,7 +150,7 @@ try { parallel( 'Windows Build': buildOnLabel('windows', 'bun run build:app'), 'MacOS x64 Build': buildMacOnLabel('macos', 'x64'), - 'MacOS arm64 Build': buildMacOnLabel('macos-arm64', 'arm64'), + 'MacOS arm64 Build': buildMacOnLabel('macos', 'arm64'), 'Ubuntu Build': { buildLinux() } )