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

Jenkins: add LXC OStree tarball based on minimal type


Move OStree creation to function `buildOStree()`.
Introduce function `buildContainer()` to construct ospack from OStree
repository suitable for LXC container creation.

Signed-off-by: default avatarDenis Pynkin <denis.pynkin@collabora.com>
Reviewed-by: default avatarEmanuele Aina <emanuele.aina@collabora.co.uk>
Differential Revision: https://phabricator.apertis.org/D7365
parent 86e504db
No related branches found
No related tags found
No related merge requests found
......@@ -91,34 +91,10 @@ def buildImage(architecture, type, board, debosarguments = "", sysroot = false,
}
if (ostree) {
stage("${architecture} ${type} OStree repo pull") {
sh(script: """\
cd ${PIPELINE_VERSION}/${architecture}/${type}; \
rm -rf repo; \
mkdir repo; \
ostree init --repo=repo --mode archive-z2;
ostree remote --repo=repo add --no-gpg-verify origin https://images.apertis.org/ostree/${architecture}-generic-${type};
ostree pull --repo=repo origin apertis/${architecture}-generic/${type}""")
}
stage("${architecture} ${type} OStree commit") {
sh(script: """\
cd ${PIPELINE_VERSION}/${architecture}/${type}; \
debos ${debosarguments} \
-t architecture:${architecture} \
-t type:$type \
-t suite:$release \
-t ospack:ospack_${release}-${architecture}-${type}_${PIPELINE_VERSION}.tar.gz \
-t message:${release}-${type}-${architecture}-${board}_${PIPELINE_VERSION} \
${WORKSPACE}/apertis-ostree-commit.yaml;
ostree --repo=repo summary -u""")
}
stage("${architecture} ${type} OStree upload") {
uploadDirectory("${env.PIPELINE_VERSION}/${architecture}/${type}/repo", "ostree/${architecture}-generic-${type}", production)
}
}
buildOStree(architecture, type, board, debosarguments)
/* Create ostree and ospack for container (board name = lxc) */
buildContainer(architecture, type, "lxc", debosarguments)
}
} finally {
stage("Cleanup ${architecture} ${type}") {
......@@ -131,6 +107,60 @@ def buildImage(architecture, type, board, debosarguments = "", sysroot = false,
}
}
def buildOStree(architecture, type, board, debosarguments = "") {
stage("${architecture} ${type} ${board} OStree repo pull") {
sh(script: """\
cd ${PIPELINE_VERSION}/${architecture}/${type}; \
rm -rf repo; \
mkdir repo; \
ostree init --repo=repo --mode archive-z2;
ostree remote --repo=repo add --no-gpg-verify origin https://images.apertis.org/ostree/${architecture}-${board}-${type};
ostree pull --repo=repo origin apertis/${architecture}-${board}/${type}""")
}
stage("${architecture} ${type} ${board} OStree commit") {
sh(script: """\
cd ${PIPELINE_VERSION}/${architecture}/${type}; \
debos ${debosarguments} \
-t architecture:${architecture} \
-t type:$type \
-t suite:$release \
-t ospack:ospack_${release}-${architecture}-${type}_${PIPELINE_VERSION}.tar.gz \
-t message:${release}-${type}-${architecture}-${board}_${PIPELINE_VERSION} \
${WORKSPACE}/apertis-ostree-commit.yaml;
ostree --repo=repo summary -u""")
}
stage("${architecture} ${type} ${board} OStree upload") {
uploadDirectory("${env.PIPELINE_VERSION}/${architecture}/${type}/repo/", "ostree/${architecture}-${board}-${type}", production)
}
}
def buildContainer(architecture, type, board, debosarguments = "") {
buildOStree(architecture, type, board, debosarguments)
stage("${architecture} ${type} ${board} OStree pack") {
sh(script: """\
cd ${PIPELINE_VERSION}/${architecture}/${type}; \
debos ${debosarguments} \
-t architecture:${architecture} \
-t type:$type \
-t suite:$release \
-t repourl:https://images.apertis.org/ostree/${architecture}-generic-${type} \
-t osname:apertis \
-t branch:apertis/${architecture}-generic/${type} \
-t ospack:lxc-ostree-${release}-${architecture}-${type}_${PIPELINE_VERSION}.tar.gz \
-t message:${release}-${type}-${architecture}-${type}-${board}_${PIPELINE_VERSION} \
${WORKSPACE}/apertis-ostree-pack.yaml""")
}
stage("${architecture} ${type} ${board} OStree upload") {
uploadDirectory ("${PIPELINE_VERSION}/${architecture}/${type}/lxc-ostree-${release}-${architecture}-${type}_${PIPELINE_VERSION}.tar.gz",
"lxc/${release}/${PIPELINE_VERSION}", production)
}
}
/* Determine whether to run uploads based on the prefix of the job name; in
* case of apertis we expect the official jobs under apertis-<release>/ while
......@@ -143,7 +173,7 @@ images["Sdk"] = buildImage("amd64", "sdk", "sdk",
"--scratchsize 10G",
false, false, production)
// Types for all boards, common debos arguments, sysroots and
// Types for all boards, common debos arguments, sysroots and ospacks
def types = [ [ "minimal", "", false, true],
[ "target", "", false, true],
[ "development", "--scratchsize 10G", true, false]
......
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