Skip to content

Commit e4b4ac7

Browse files
committed
Try new native MAC build computers
1 parent b259896 commit e4b4ac7

2 files changed

Lines changed: 17 additions & 0 deletions

File tree

Jenkinsfile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,12 @@ def runOnNativeBuildAgent(String platform, Closure body) {
2626
case 'gtk4.linux.x86_64':
2727
dockerImage = 'eclipse/platformreleng-debian-swtnativebuild:12'
2828
break
29+
case 'cocoa.macosx.aarch64':
30+
agentLabel = 'nc1ht-macos26-arm64'
31+
break
32+
case 'cocoa.macosx.x86_64':
33+
agentLabel = 'b9h15-macos15-x86_64'
34+
break
2935
}
3036
if (dockerImage != null) {
3137
podTemplate(inheritFrom: 'basic' /* inherit general configuration */, containers: [
@@ -233,7 +239,16 @@ pipeline {
233239
sh build.sh clean
234240
sh build.sh -gtk4 checklibs install-pi-only
235241
elif [[ ${PLATFORM} == cocoa.macosx.* ]]; then
242+
xcode-select --print-path
243+
xcode-select --version
244+
softwareupdate --list
245+
softwareupdate --history
246+
xcodebuild -version
247+
xcodebuild -showsdks
236248
sh build.sh install
249+
for f in libs/*; do
250+
vtool -show ${f}
251+
done
237252
else
238253
echo "Unexpected build platform ${PLATFORM}"
239254
exit 1

bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/library/build.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
# IBM Corporation - initial API and implementation
1414
#*******************************************************************************
1515

16+
# Dummy change
17+
1618
sw_vers -productVersion
1719

1820
cd `dirname $0`

0 commit comments

Comments
 (0)