Skip to content

Commit

Permalink
[Build] Unify Maven build args in Jenkins pipeline and GitHub workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
HannesWell committed Mar 12, 2024
1 parent d06d1a1 commit 735ab84
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/maven.yml
Expand Up @@ -62,7 +62,7 @@ jobs:
uses: coactions/setup-xvfb@b6b4fcfb9f5a895edadc3bc76318fae0ac17c8b3 # v1.0.1
with:
run: >-
mvn --batch-mode -V -U
mvn --batch-mode -V -U -e
--threads 1C
-DforkCount=1
-Dnative=${{ matrix.config.native }}
Expand All @@ -77,7 +77,7 @@ jobs:
uses: coactions/setup-xvfb@b6b4fcfb9f5a895edadc3bc76318fae0ac17c8b3 # v1.0.1
with:
run: >-
mvn --batch-mode -V -U
mvn --batch-mode -V -U -e
-DforkCount=1
-Dcompare-version-with-baselines.skip=true
--fail-at-end
Expand Down
2 changes: 1 addition & 1 deletion Jenkinsfile
Expand Up @@ -299,7 +299,7 @@ pipeline {
dir('eclipse.platform.swt') {
sh '''
mvn clean verify \
--batch-mode --threads 1C -DforkCount=0 \
--batch-mode --threads 1C -V -U -e -DforkCount=0 \
-Dcompare-version-with-baselines.skip=false \
-Dorg.eclipse.swt.tests.junit.disable.test_isLocal=true \
-Dmaven.test.failure.ignore=true -Dmaven.test.error.ignore=true
Expand Down

0 comments on commit 735ab84

Please sign in to comment.