From 93c52341624bec461a0157d338504b0bbf818720 Mon Sep 17 00:00:00 2001 From: Hannes Wellmann Date: Thu, 3 Oct 2024 12:31:23 +0200 Subject: [PATCH] [Build] Remove irrelevant propertys and build in parallel at GH --- .github/workflows/maven.yml | 4 ++-- Jenkinsfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index c46837087..eba2570b1 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -46,9 +46,9 @@ jobs: uses: coactions/setup-xvfb@b6b4fcfb9f5a895edadc3bc76318fae0ac17c8b3 # v1.0.1 with: run: >- - mvn clean verify --batch-mode -Pits + mvn clean verify --batch-mode --threads 1C -Pits -Dtycho.p2.baselineMode=failCommon - -Dmaven.test.error.ignore=true -Dmaven.test.failure.ignore=true + -Dmaven.test.failure.ignore=true -Dtycho.surefire.deleteWorkDir=true - name: Upload Test Results uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 diff --git a/Jenkinsfile b/Jenkinsfile index ca30d6ba2..ace6a374e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -26,7 +26,7 @@ pipeline { ]) { xvnc(useXauthority: true) { sh '''#!/bin/bash -x - mavenArgs="clean verify --batch-mode -Dmaven.test.error.ignore=true -Dmaven.test.failure.ignore=true -Dtycho.p2.baselineMode=failCommon" + mavenArgs="clean verify --batch-mode -Dmaven.test.failure.ignore=true -Dtycho.p2.baselineMode=failCommon" if [[ ${BRANCH_NAME} == master ]] || [[ ${BRANCH_NAME} =~ m2e-[0-9]+\\.[0-9]+\\.x ]]; then mvn ${mavenArgs} -Peclipse-sign,its -DDtycho.pgp.signer.bc.secretKeys="${KEYRING}" -Dgpg.passphrase="${KEYRING_PASSPHRASE}" else