diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 93f3527ae89..0a49453029e 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -68,7 +68,6 @@ jobs: -Dnative=${{ matrix.config.native }} -Dcompare-version-with-baselines.skip=true -Dtycho.baseline.replace=none - -Dmaven.compiler.failOnWarning=true --fail-at-end -DskipNativeTests=false -DfailIfNoTests=false @@ -81,7 +80,6 @@ jobs: mvn --batch-mode -V -U -DforkCount=1 -Dcompare-version-with-baselines.skip=true - -Dmaven.compiler.failOnWarning=true --fail-at-end -DskipNativeTests=true -DfailIfNoTests=true diff --git a/Jenkinsfile b/Jenkinsfile index 72216e1865c..df84e631027 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -300,7 +300,7 @@ pipeline { sh ''' mvn clean verify \ --batch-mode --threads 1C -DforkCount=0 \ - -Dcompare-version-with-baselines.skip=false -Dmaven.compiler.failOnWarning=true \ + -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 ''' @@ -312,7 +312,8 @@ pipeline { junit 'eclipse.platform.swt/tests/*.test*/target/surefire-reports/*.xml' archiveArtifacts artifacts: '**/*.log,**/*.html,**/target/*.jar,**/target/*.zip' discoverGitReferenceBuild referenceJob: 'eclipse.platform.swt/master' - recordIssues publishAllIssues: true, tools: [eclipse(pattern: '**/target/compilelogs/*.xml'), mavenConsole(), javaDoc()] + recordIssues publishAllIssues: true, tools: [eclipse(name: 'Compiler and API Tools', pattern: '**/target/compilelogs/*.xml'), javaDoc()], qualityGates: [[threshold: 1, type: 'DELTA', unstable: true]] + recordIssues publishAllIssues: true, tool: mavenConsole(), qualityGates: [[threshold: 1, type: 'DELTA_ERROR', unstable: true]] } } }