From db3b190c261d1353e2ed4215929bd08dd6c1f632 Mon Sep 17 00:00:00 2001 From: Bjoern Pedersen Date: Mon, 19 Dec 2022 14:24:24 +0100 Subject: [PATCH] Improve jenkinsfile Change-Id: I68efdd1a20135a0374fb9692e369a315824786ea --- ci/Jenkinsfile | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/ci/Jenkinsfile b/ci/Jenkinsfile index 1d8c32c..48a5156 100644 --- a/ci/Jenkinsfile +++ b/ci/Jenkinsfile @@ -82,9 +82,6 @@ fi failedTotalAll: 1]) - if (status == 'FAILURE') { - throw new Exception('Failure in pylint with ' + pyver) - } } } // run_pylint @@ -114,9 +111,6 @@ make test step([$class: 'JUnitResultArchiver', allowEmptyResults: true, keepLongStdio: true, testResults: 'pytest.xml']) - if (status == 'FAILURE') { - throw new Exception('Failure in test with ' + pyver) - } } } @@ -230,6 +224,7 @@ node("dockerhost") { rsync -rlv doc/_build/* /ictrlsrv/share/public/doc/frappy ''' } - }} + }}, failFast: false } + setGerritReview() }