Skip to content
Snippets Groups Projects

Generate ostree static delta for rollback test

Merged Frédéric Dalleau requested to merge wip/fredo/T5682 into apertis/v2019dev0
Compare and Show latest version
7 files
+ 19
25
Compare changes
  • Side-by-side
  • Inline
Files
7
+ 11
7
#!/usr/bin/env groovy
env.PIPELINE_VERSION = VersionNumber(versionNumberString: '${BUILD_DATE_FORMATTED,"yyyyMMdd"}.${BUILDS_TODAY_Z}')
osname = 'apertis'
release = "v2019dev0"
@@ -266,13 +268,18 @@ def buildOStree(architecture, type, board, debosarguments = "", repo = "repo") {
--filename ${image_name}.delta""")
}
def buildOStreeRollback(architecture, type, board, debosarguments = "", repo = "repo") {
def buildOStreeRollbackDelta(architecture, type, board, debosarguments = "", repo = "repo") {
def image_name = imageName(architecture, type, board, true)
def branch = "${osname}/${release}/${architecture}-${board}/${type}"
def rollback_branch = "${osname}/${release}/${architecture}-${board}/${type}_rollback"
def rollback_branch = "${osname}/${release}/${architecture}-${board}/${type}-rollback"
sh(script: """
cd ${PIPELINE_VERSION}/${architecture}/${type}
echo "/usr/bin/updatectl" > skip_list
ostree --repo=${repo} commit \
--tree=ref=${branch} \
--branch=${rollback_branch} \
--skip-list="skip_list"
ostree --repo=${repo} static-delta generate \
--from=${branch} \
--to=${rollback_branch} \
@@ -281,8 +288,6 @@ def buildOStreeRollback(architecture, type, board, debosarguments = "", repo = "
--filename ${image_name}_rollback.delta""")
}
/** Generate the image name
*
* To have a single place for image name generation.
@@ -338,7 +343,7 @@ def buildOStreeImage(architecture, type, board, debosarguments = "") {
stage("${architecture} ${type} ${board} OStree image build") {
buildOStree(architecture, type, board, debosarguments, repo)
buildOStreeRollback(architecture, type, board, debosarguments, repo)
buildOStreeRollbackDelta(architecture, type, board, debosarguments, repo)
sh(script: """
cd ${PIPELINE_VERSION}/${architecture}/${type}
@@ -416,8 +421,7 @@ def buildImages(architecture, type, boards, debosarguments = "", image = true, s
buildenv.inside("--device=/dev/kvm") {
stage("setup ${architecture} ${type}") {
env.PIPELINE_VERSION = VersionNumber(versionNumberString: '${BUILD_DATE_FORMATTED,"yyyyMMdd"}.${BUILDS_TODAY_Z}')
sh ("env ; mkdir -p ${PIPELINE_VERSION}/${architecture}/${type}")
sh ("env ; mkdir -p ${PIPELINE_VERSION}/${architecture}/${type}")
}
// Add successfully build artifacts here to know which ones we need to upload and test
Loading