Improve jenkinsfile

Change-Id: I68efdd1a20135a0374fb9692e369a315824786ea
This commit is contained in:
Bjoern Pedersen 2022-12-19 14:24:24 +01:00
parent 929e41ffff
commit db3b190c26

9
ci/Jenkinsfile vendored
View File

@ -82,9 +82,6 @@ fi
failedTotalAll: 1]) failedTotalAll: 1])
if (status == 'FAILURE') {
throw new Exception('Failure in pylint with ' + pyver)
}
} }
} // run_pylint } // run_pylint
@ -114,9 +111,6 @@ make test
step([$class: 'JUnitResultArchiver', allowEmptyResults: true, step([$class: 'JUnitResultArchiver', allowEmptyResults: true,
keepLongStdio: true, testResults: 'pytest.xml']) 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 rsync -rlv doc/_build/* /ictrlsrv/share/public/doc/frappy
''' '''
} }
}} }}, failFast: false
} }
setGerritReview()
} }