Skip to content

Commit e64dc22

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

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

Jenkinsfile

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -202,15 +202,10 @@ 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',\
209-
'gtk.linux.riscv64',\
210207
'gtk.linux.x86_64',\
211-
'gtk4.linux.x86_64',\
212-
'win32.win32.aarch64',\
213-
'win32.win32.x86_64'
208+
'gtk4.linux.x86_64'
214209
}
215210
}
216211
when {
@@ -295,7 +290,7 @@ pipeline {
295290
fi
296291
if [[ -n "$signerUrl" ]]; then
297292
echo "Sign ${PLATFORM} libraries"
298-
if [[ "${BRANCH_NAME}" == master ]] || [[ "${BRANCH_NAME}" =~ R[0-9]+_[0-9]+(_[0-9]+)?_maintenance ]]; then
293+
if [[ "${BRANCH_NAME}" == refine-binaries-build-commit-check ]] || [[ "${BRANCH_NAME}" =~ R[0-9]+_[0-9]+(_[0-9]+)?_maintenance ]]; then
299294
for file in *.${binariesExtension}; do
300295
mv $file unsigned-$file
301296
curl --fail --form "file=@unsigned-$file" --output "$file" "$signerUrl"
@@ -372,7 +367,7 @@ pipeline {
372367
dir('eclipse.platform.swt') {
373368
sh """
374369
# 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
370+
if [[ '${BRANCH_NAME}' == refine-binaries-build-commit-check ]] || [[ '${BRANCH_NAME}' =~ R[0-9]+_[0-9]+(_[0-9]+)?_maintenance ]]; then
376371
if [[ ${params.skipCommit} != true ]]; then
377372
378373
# 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)