aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOliver Smith <osmith@sysmocom.de>2021-02-11 11:50:05 +0100
committerosmith <osmith@sysmocom.de>2021-02-11 18:03:38 +0000
commit7433811c623f23fe3f520e03ad40874a21efe9c3 (patch)
tree2f71163ae6e74ec428ac7191a329d8ff52ba8a60
parent9bfdbd13e88e153451e50089b1573b1549be4b90 (diff)
jobs/registry-rebuild-upload-titan: new job
Trigger for this job will be added in follow-up patch. Related: OS#5017 Change-Id: I2c4b264abf760894edb0788054fd987f9346b6ec
-rw-r--r--jobs/registry-rebuild-upload-titan.yml37
1 files changed, 37 insertions, 0 deletions
diff --git a/jobs/registry-rebuild-upload-titan.yml b/jobs/registry-rebuild-upload-titan.yml
new file mode 100644
index 0000000..7e50aed
--- /dev/null
+++ b/jobs/registry-rebuild-upload-titan.yml
@@ -0,0 +1,37 @@
+
+---
+- project:
+ name: registry-rebuild-upload-titan
+ jobs:
+ - registry-rebuild-upload-titan
+
+- job:
+ name: registry-rebuild-upload-titan
+ description: |
+ Rebuild + push ttcn3 base images (debian-stretch-titan) in our private
+ registry.osmocom.org
+ <br><br>
+ Related:<br>
+ <ul>
+ <li> <a href="https://osmocom.org/issues/5017">OS#5017</a>
+ </ul>
+ node: osmocom-master-debian9
+ scm:
+ - git:
+ url: git://git.osmocom.org/docker-playground
+ skip-tag: true
+ branches:
+ - 'origin/master'
+
+ builders:
+ - shell: |
+ REGISTRY="registry.osmocom.org"
+ make -C debian-stretch-titan REGISTRY_HOST=$REGISTRY
+ docker push "$REGISTRY/$USER/debian-stretch-titan"
+
+ publishers:
+ - email:
+ notify-every-unstable-build: true
+ recipients: 'jenkins-notifications@lists.osmocom.org'
+
+# vim: expandtab tabstop=2 shiftwidth=2