From bee7e0db0cbd2d71002223cda5330f294c950d80 Mon Sep 17 00:00:00 2001 From: Jonah Graham Date: Fri, 18 Aug 2023 20:21:38 -0400 Subject: [PATCH] Disable running tests on Jenkins The Jenkins CI at EF is running very slowly recently and all tests are timing out. The tests work fine locally and find on GitHub actions runners. Therefore on the Jenkins CI build without running the tests. --- Jenkinsfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Jenkinsfile b/Jenkinsfile index 346a2f829a3..a70a795c5e2 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -38,6 +38,7 @@ pipeline { withCredentials([string(credentialsId: 'gpg-passphrase', variable: 'KEYRING_PASSPHRASE')]) { sh '''/jipp/tools/apache-maven/latest/bin/mvn \ clean verify -B -V \ + -DskipTests=true \ -Dgpg.passphrase="${KEYRING_PASSPHRASE}" \ -Dmaven.test.failure.ignore=true \ -DexcludedGroups=flakyTest,slowTest \