From 9445d6039ef6aeb869ae8a3b70bc03f1dade4d8a Mon Sep 17 00:00:00 2001 From: Jonah Graham Date: Mon, 29 Jan 2024 16:52:29 -0500 Subject: [PATCH] Workaround #684 by disabling dsf-gdb tests This only disables running the tests on Jenkins as the GitHub actions these tests work fine for now. See https://github.com/eclipse-cdt/cdt/issues/684 --- Jenkinsfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index cc8c6ee7294..878e1f2121b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -36,8 +36,10 @@ pipeline { timeout(activity: true, time: 20) { withEnv(['MAVEN_OPTS=-XX:MaxRAMPercentage=50.0 -XX:+PrintFlagsFinal']) { withCredentials([string(credentialsId: 'gpg-passphrase', variable: 'KEYRING_PASSPHRASE')]) { + // XXX: Issue 684 means that dsf-gdb tests are skipped sh '''/jipp/tools/apache-maven/latest/bin/mvn \ clean verify -B -V \ + -Ddsf-gdb.skip.tests=true \ -Dgpg.passphrase="${KEYRING_PASSPHRASE}" \ -Dmaven.test.failure.ignore=true \ -DexcludedGroups=flakyTest,slowTest \