Skip to content
Snippets Groups Projects
Commit f3e30896 authored by Emanuele Aina's avatar Emanuele Aina
Browse files

Jenkinsfile: Build the lxc-ostree containers only for amd64-minimal


Speed things up and reduce resource consumption on a component that is
currently not a priority.

Signed-off-by: Emanuele Aina's avatarEmanuele Aina <emanuele.aina@collabora.com>
parent b120a6b3
No related branches found
No related tags found
1 merge request!88Jenkinsfile: Build the lxc-ostree containers only for amd64-minimal
This commit is part of merge request !91. Comments created here will be created in the context of that merge request.
...@@ -39,6 +39,7 @@ def architectures = [ ...@@ -39,6 +39,7 @@ def architectures = [
image: true, image: true,
sysroot: false, sysroot: false,
ostree: true, ostree: true,
lxc: true,
], ],
target: [ target: [
args: "-t demopack:${demopack}", args: "-t demopack:${demopack}",
...@@ -383,7 +384,7 @@ def buildSysroot(architecture, type, debosarguments = "") { ...@@ -383,7 +384,7 @@ def buildSysroot(architecture, type, debosarguments = "") {
* *
* @boards -- array with board names * @boards -- array with board names
*/ */
def buildImages(architecture, type, boards, debosarguments = "", image = true, sysroot = false, ostree = false, production = false) { def buildImages(architecture, type, boards, debosarguments = "", image = true, sysroot = false, ostree = false, lxc = false, production = false) {
return { return {
node("docker-slave") { node("docker-slave") {
checkout scm checkout scm
...@@ -437,13 +438,15 @@ def buildImages(architecture, type, boards, debosarguments = "", image = true, s ...@@ -437,13 +438,15 @@ def buildImages(architecture, type, boards, debosarguments = "", image = true, s
} }
} }
/* Create ostree and tarball for container (board name = lxc) */ if (lxc) {
try { /* Create ostree and tarball for container (board name = lxc) */
buildContainer(architecture, type, "lxc", debosarguments) try {
buildStatus["lxc-ostree"] = true buildContainer(architecture, type, "lxc", debosarguments)
} catch (e) { buildStatus["lxc-ostree"] = true
// If image build failed -- do not fail other types but do not need to start tests for it } catch (e) {
buildStatus["lxc-ostree"] = false // If image build failed -- do not fail other types but do not need to start tests for it
buildStatus["lxc-ostree"] = false
}
} }
} }
...@@ -526,12 +529,12 @@ buildCandidates.each { name, arch -> ...@@ -526,12 +529,12 @@ buildCandidates.each { name, arch ->
if (!params.requires) { if (!params.requires) {
/* first, build all jobs which don’t have any dependencies, in parallel */ /* first, build all jobs which don’t have any dependencies, in parallel */
first_pass << [("$name $type"): first_pass << [("$name $type"):
buildImages(name, type, merged.boards, merged.args, merged.image, merged.sysroot, merged.ostree, production) buildImages(name, type, merged.boards, merged.args, merged.image, merged.sysroot, merged.ostree, merged.lxc, production)
] ]
} else { } else {
/* second, build any jobs which depend on jobs from the first pass, also in parallel */ /* second, build any jobs which depend on jobs from the first pass, also in parallel */
second_pass << [("$name $type"): second_pass << [("$name $type"):
buildImages(name, type, merged.boards, merged.args, merged.image, merged.sysroot, merged.ostree, production) buildImages(name, type, merged.boards, merged.args, merged.image, merged.sysroot, merged.ostree, merged.lxc, production)
] ]
} }
} }
......
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