From cd54f319845096393cba18fe25ae2a01ceedcbdd Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Thu, 8 Sep 2022 22:13:32 +0200 Subject: [PATCH] Jenkinsfile: remove report bundles creation in unit-validate This was missing to be removed from Jenkinsfile when we moved to GHA for unit and integration tests. Signed-off-by: CrazyMax --- Jenkinsfile | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 908fff5738..0357fee906 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -110,16 +110,6 @@ pipeline { echo 'Chowning /workspace to jenkins user' docker run --rm -v "$WORKSPACE:/workspace" busybox chown -R "$(id -u):$(id -g)" /workspace ''' - - catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE', message: 'Failed to create bundles.tar.gz') { - sh ''' - bundleName=unit - echo "Creating ${bundleName}-bundles.tar.gz" - tar -czvf ${bundleName}-bundles.tar.gz bundles/junit-report*.xml bundles/go-test-report*.json bundles/coverage*.out - ''' - - archiveArtifacts artifacts: '*-bundles.tar.gz', allowEmptyArchive: true - } } cleanup { sh 'make clean'