aboutsummaryrefslogtreecommitdiffstats
path: root/jobs/registry-rebuild-upload-fpga-build.yml
diff options
context:
space:
mode:
authorHarald Welte <laforge@osmocom.org>2020-12-17 15:29:14 +0100
committerHarald Welte <laforge@osmocom.org>2020-12-17 15:54:41 +0100
commit660d7ba7c791c3e34f67005e7b3baecac3066dc9 (patch)
tree41136b4e009f8ff1b29a5ce4a7d8c3b3585903d7 /jobs/registry-rebuild-upload-fpga-build.yml
parentb4e042736c294db151a65174872e88b6a57d0280 (diff)
add registry-rebuild-upload-fpga-build.yml
This will rune once per week and make sure that registry.osmocom.org has a fpga-build container that the buld slaves can use. Change-Id: Ie700d7c6e3c5e794edd81c3acc4b689e05d6864d
Diffstat (limited to 'jobs/registry-rebuild-upload-fpga-build.yml')
-rw-r--r--jobs/registry-rebuild-upload-fpga-build.yml35
1 files changed, 35 insertions, 0 deletions
diff --git a/jobs/registry-rebuild-upload-fpga-build.yml b/jobs/registry-rebuild-upload-fpga-build.yml
new file mode 100644
index 0000000..9338bce
--- /dev/null
+++ b/jobs/registry-rebuild-upload-fpga-build.yml
@@ -0,0 +1,35 @@
+---
+- project:
+ name: registry-rebuild-upload-fpga-build
+ jobs:
+ - registry-rebuild-upload-fpga-build
+
+- job:
+ name: registry-rebuild-upload-fpga-build
+ description: |
+ Rebuild + push fpga-build docker images in our private registry.osmocom.org
+ 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"
+ cd debian-buster-build && make
+ cd ..
+ cd fpga-build && make REGISTRY_HOST=$REGISTRY
+ docker push $REGISTRY/$USER/fpga-build
+ cd ..
+ triggers:
+ - timed: "@weekly"
+
+ publishers:
+ - email:
+ notify-every-unstable-build: true
+ recipients: 'jenkins-notifications@lists.osmocom.org'
+
+# vim: expandtab tabstop=2 shiftwidth=2