osmith has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ci/+/38800?usp=email )
Change subject: jobs/registry-rebuild-upload-android: new job ......................................................................
jobs/registry-rebuild-upload-android: new job
Add a job to build and upload the debian-bookworm-android image, to be used for building the android-apdu-proxy app and possibly more in the future.
Related: OS#6367 Depends: docker-playground Ic7a454be23072c3f0ed609d370fc88f49205b04c Change-Id: Ia71bf8df638b9c4359d8b1a723795029541e023a --- A jobs/registry-rebuild-upload.yml 1 file changed, 39 insertions(+), 0 deletions(-)
Approvals: pespin: Looks good to me, but someone else must approve osmith: Looks good to me, approved Jenkins Builder: Verified laforge: Looks good to me, but someone else must approve
diff --git a/jobs/registry-rebuild-upload.yml b/jobs/registry-rebuild-upload.yml new file mode 100644 index 0000000..c5a094a --- /dev/null +++ b/jobs/registry-rebuild-upload.yml @@ -0,0 +1,39 @@ +- project: + name: registry-rebuild-upload + jobs: + - "{job-name}" + job-name: + - registry-rebuild-upload-android: + image: "debian-bookworm-android" + +- job-template: + name: '{job-name}' + description: | + Build the <code>{image}</code> image from + <a href="https://gitea.osmocom.org/osmocom/docker-playground/"> + docker-playground + </a> and push it to the Osmocom registry. + concurrent: false + parameters: + - string: + name: BRANCH + description: | + Branch of <code>docker-playground.git</code> + default: 'master' + scm: + - git: + url: https://gerrit.osmocom.org/docker-playground + skip-tag: true + branches: + - '$BRANCH' + builders: + - shell: | + REGISTRY="registry.osmocom.org" + make -C "{image}" REGISTRY_HOST=$REGISTRY + docker push "$REGISTRY/$USER/{image}" + properties: + - build-discarder: + num-to-keep: 120 + wrappers: + - ansicolor: + colormap: xterm