Skip to content

Commit 4223ecf

Browse files
committed
[REMOVE] Test native rebuild and pushing
1 parent 8ccfeae commit 4223ecf

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

Jenkinsfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ pipeline {
295295
fi
296296
if [[ -n "$signerUrl" ]]; then
297297
echo "Sign ${PLATFORM} libraries"
298-
if [[ "${BRANCH_NAME}" == master ]] || [[ "${BRANCH_NAME}" =~ R[0-9]+_[0-9]+(_[0-9]+)?_maintenance ]]; then
298+
if [[ "${BRANCH_NAME}" == refine-binaries-build-commit-check ]] || [[ "${BRANCH_NAME}" =~ R[0-9]+_[0-9]+(_[0-9]+)?_maintenance ]]; then
299299
for file in *.${binariesExtension}; do
300300
mv $file unsigned-$file
301301
curl --fail --form "file=@unsigned-$file" --output "$file" "$signerUrl"
@@ -339,7 +339,7 @@ pipeline {
339339
dir('eclipse.platform.swt') {
340340
sh '''
341341
mvn clean verify \
342-
--batch-mode --threads 1C -V -U -e \
342+
--batch-mode --threads 1C -V -U -e -DskipTests \
343343
-Pbree-libs -Papi-check -Pjavadoc \
344344
-Dcompare-version-with-baselines.skip=false \
345345
-Dorg.eclipse.swt.tests.junit.disable.test_isLocal=true \
@@ -372,11 +372,11 @@ pipeline {
372372
dir('eclipse.platform.swt') {
373373
sh """
374374
# 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
375+
if [[ '${BRANCH_NAME}' == PR-2251 ]] || [[ '${BRANCH_NAME}' =~ R[0-9]+_[0-9]+(_[0-9]+)?_maintenance ]]; then
376376
if [[ ${params.skipCommit} != true ]]; then
377377
378378
# Don't rebase and just fail in case another commit has been pushed to the master/maintenance branch in the meantime
379-
git push origin HEAD:refs/heads/${BRANCH_NAME}
379+
git push origin HEAD:refs/heads/refine-binaries-build-commit-check
380380
git push origin refs/tags/${getLatestGitTag()}
381381
382382
exit 0

bundles/org.eclipse.swt/Eclipse SWT AWT/gtk/library/swt_awt.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
#include "swt.h"
1616
#include "jawt_md.h"
1717

18+
// Dummy change
19+
1820
#define SWT_AWT_NATIVE(func) Java_org_eclipse_swt_awt_SWT_1AWT_##func
1921

2022
#ifndef NO_getAWTHandle

0 commit comments

Comments
 (0)