Skip to content

Commit 2ab867f

Browse files
committed
[REMOVE] Test native rebuild and pushing
1 parent 8575e77 commit 2ab867f

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

Jenkinsfile

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -202,15 +202,11 @@ pipeline {
202202
axis {
203203
name 'PLATFORM'
204204
values \
205-
'cocoa.macosx.aarch64',\
206-
'cocoa.macosx.x86_64',\
207205
'gtk.linux.aarch64',\
208206
'gtk.linux.ppc64le',\
209207
'gtk.linux.riscv64',\
210208
'gtk.linux.x86_64',\
211-
'gtk4.linux.x86_64',\
212-
'win32.win32.aarch64',\
213-
'win32.win32.x86_64'
209+
'gtk4.linux.x86_64'
214210
}
215211
}
216212
when {
@@ -295,7 +291,7 @@ pipeline {
295291
fi
296292
if [[ -n "$signerUrl" ]]; then
297293
echo "Sign ${PLATFORM} libraries"
298-
if [[ "${BRANCH_NAME}" == master ]] || [[ "${BRANCH_NAME}" =~ R[0-9]+_[0-9]+(_[0-9]+)?_maintenance ]]; then
294+
if [[ "${BRANCH_NAME}" == refine-binaries-build-commit-check ]] || [[ "${BRANCH_NAME}" =~ R[0-9]+_[0-9]+(_[0-9]+)?_maintenance ]]; then
299295
for file in *.${binariesExtension}; do
300296
mv $file unsigned-$file
301297
curl --fail --form "file=@unsigned-$file" --output "$file" "$signerUrl"
@@ -372,7 +368,7 @@ pipeline {
372368
dir('eclipse.platform.swt') {
373369
sh """
374370
# Check for the master-branch as late as possible to have as much of the same behavior as possible
375-
if [[ '${BRANCH_NAME}' == master ]] || [[ '${BRANCH_NAME}' =~ R[0-9]+_[0-9]+(_[0-9]+)?_maintenance ]]; then
371+
if [[ '${BRANCH_NAME}' == refine-binaries-build-commit-check ]] || [[ '${BRANCH_NAME}' =~ R[0-9]+_[0-9]+(_[0-9]+)?_maintenance ]]; then
376372
if [[ ${params.skipCommit} != true ]]; then
377373
378374
# Don't rebase and just fail in case another commit has been pushed to the master/maintenance branch in the meantime

bundles/org.eclipse.swt/Eclipse SWT/common/library/callback.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
#ifndef CALLBACK_NATIVE
2222
#define CALLBACK_NATIVE(func) Java_org_eclipse_swt_internal_Callback_##func
2323
#endif
24+
// Dummy change
2425

2526
/* define this to print out debug statements */
2627
/* #define DEBUG_CALL_PRINTS */

0 commit comments

Comments
 (0)