summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKiran Kamineni <kiran.k.kamineni@intel.com>2018-03-15 16:09:02 -0700
committerKiran Kamineni <kiran.k.kamineni@intel.com>2018-03-15 16:09:06 -0700
commit129b92b4c0e523106c27c605bbaa56166d28d7b5 (patch)
tree40ff3d3f88f11ff37e27dbd313d0d3fdd5435fcb
parentb8ffa5969723eef6630d09b894f93b448e4cc804 (diff)
Adding template for building docker images
Adding a template in the global golang template for building and pushing docker images to nexus Issue-ID: AAF-100 Change-Id: I10dc95e005c17a054b366f5cd5fd7c1179ed8c3d Signed-off-by: Kiran Kamineni <kiran.k.kamineni@intel.com>
-rw-r--r--jjb/global-templates-golang.yaml54
1 files changed, 54 insertions, 0 deletions
diff --git a/jjb/global-templates-golang.yaml b/jjb/global-templates-golang.yaml
index d3ceac5e2..168fb6203 100644
--- a/jjb/global-templates-golang.yaml
+++ b/jjb/global-templates-golang.yaml
@@ -121,3 +121,57 @@
publishers:
- infra-shiplogs:
maven-version: '{maven-version}'
+
+- job-template:
+ # Job template for building & pushing docker images
+ #
+ # The purpose of this job template is to run:
+ # 1. login to the docker registry
+ # 2. run a specified shell builder
+ #
+
+ name: '{project-name}-{stream}-docker-golang-shell-daily'
+ project-type: freestyle
+ node: 'ubuntu1604-docker-8c-8g'
+ disabled: false
+ properties:
+ - infra-properties:
+ build-days-to-keep: '{build-days-to-keep}'
+
+ parameters:
+ - infra-parameters:
+ project: '{project}'
+ branch: '{branch}'
+ refspec: 'refs/heads/{branch}'
+ artifacts: '{archive-artifacts}'
+
+ scm:
+ - gerrit-trigger-scm:
+ refspec: ''
+ choosing-strategy: 'default'
+ submodule-recursive: '{submodule-recursive}'
+
+ wrappers:
+ - infra-wrappers:
+ build-timeout: '{build-timeout}'
+
+ triggers:
+ # 12 AM UTC
+ - timed: 'H 12 * * *'
+ - gerrit-trigger-release-manually:
+ server: '{server-name}'
+ project: '{project}'
+ branch: '{branch}'
+
+ builders:
+ - provide-maven-settings:
+ global-settings-file: 'global-settings'
+ settings-file: '{mvn-settings}'
+
+ - docker-login
+
+ - shell: '{script}'
+
+ publishers:
+ - infra-shiplogs:
+ maven-version: '{maven-version}' \ No newline at end of file