Skip to content
Snippets Groups Projects
Commit a5406159 authored by Luis Araujo's avatar Luis Araujo
Browse files

Submit lava tests jobs for new images


This commit adds a new stage to trigger the lava jobs tests
for the new image after it is uploadedto the repo directory.

It will only submit the lava jobs for production projects.

Signed-off-by: default avatarLuis Araujo <luis.araujo@collabora.co.uk>
Reviewed-by: Emanuele Aina's avatarEmanuele Aina <emanuele.aina@collabora.com>
Differential Revision: https://phabricator.apertis.org/D7380
parent 2ec3b112
No related branches found
No related tags found
No related merge requests found
......@@ -21,6 +21,32 @@ def uploadDirectory(source, target, upload = true) {
}
}
def runTestsJobs(version, release, type, arch, board, submit = true) {
if (!submit) {
println "Skipping submitting tests jobs"
return
}
dir ("apertis-tests") {
git(url: "https://git.apertis.org/cgit/apertis-tests.git/",
poll: false,
branch: "master")
}
// TODO: Remove this once uefi images run in the actual boards
def boardp = (board == "uefi") ? "qemu" : board
withCredentials([ file(credentialsId: 'apertis-lava-user', variable: 'lqaconfig') ]) {
sh(script: """\
/usr/bin/lqa -c ${lqaconfig} submit \
--profile apertis-${release}-${type}-${arch}-${boardp} \
-g apertis-tests/templates/profiles.yaml \
-t image_date:${version}""")
}
}
def buildImage(architecture, type, board, debosarguments = "", sysroot = false, ostree = false, production = false) {
return {
node("docker-slave") {
......@@ -90,6 +116,10 @@ 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)
/* Create ostree and ospack for container (board name = lxc) */
......
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