Skip to content
Snippets Groups Projects
Commit 27ca7dcc authored by Denis Pynkin's avatar Denis Pynkin
Browse files

Move LAVA tests to the end of pipeline


Start of tests must be the last step in pipeline to avoid omissions
of images build caused by wrong tests description.

Signed-off-by: default avatarDenis Pynkin <denis.pynkin@collabora.com>
Reviewed-by: default avatarLuis Araujo <luis.araujo@collabora.co.uk>
Differential Revision: https://phabricator.apertis.org/D7735
parent 57e746b3
No related branches found
No related tags found
No related merge requests found
......@@ -138,10 +138,6 @@ def buildImage(architecture, type, board, debosarguments = "", sysroot = false,
uploadDirectory (env.PIPELINE_VERSION, "daily/${release}", production)
}
stage("Submitting tests jobs (lava)") {
runTestsJobs (env.PIPELINE_VERSION, release, type, architecture, board, production)
}
if (ostree) {
buildOStree(architecture, type, board, debosarguments, production)
buildOStreeImage(architecture, type, board, debosarguments, production)
......@@ -149,6 +145,11 @@ def buildImage(architecture, type, board, debosarguments = "", sysroot = false,
buildContainer(architecture, type, "lxc", debosarguments, production)
}
// This stage must be the last in pipeline
stage("Submitting tests jobs (lava)") {
runTestsJobs (env.PIPELINE_VERSION, release, type, architecture, board, production)
}
} finally {
stage("Cleanup ${architecture} ${type}") {
deleteDir()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment