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.
This commit is contained in:
Tom Butcher 2026-08-01 21:29:44 +01:00
parent 575a2d1d20
commit c429a88315

2
Jenkinsfile vendored
View File

@ -150,7 +150,7 @@ try {
parallel( parallel(
'Windows Build': buildOnLabel('windows', 'bun run build:app'), 'Windows Build': buildOnLabel('windows', 'bun run build:app'),
'MacOS x64 Build': buildMacOnLabel('macos', 'x64'), 'MacOS x64 Build': buildMacOnLabel('macos', 'x64'),
'MacOS arm64 Build': buildMacOnLabel('macos-arm64', 'arm64'), 'MacOS arm64 Build': buildMacOnLabel('macos', 'arm64'),
'Ubuntu Build': { buildLinux() } 'Ubuntu Build': { buildLinux() }
) )