summaryrefslogtreecommitdiffstats
path: root/jjb/global-templates-c.yaml
diff options
context:
space:
mode:
authorManjunath Ranganathaiah <manjunath.ranganathaiah@intel.com>2018-08-15 11:42:10 -0700
committerManjunath Ranganathaiah <manjunath.ranganathaiah@intel.com>2018-08-16 10:47:29 -0700
commit9d6c82393e47dcf81ea2ea123c272a777c4dfa63 (patch)
tree439046cd940c0c81e07f0331ac791f20bb703a45 /jjb/global-templates-c.yaml
parent096164ee7b0e83e0868ca1268392845a0b51ae91 (diff)
Creates a job to nightly build sshsm docker images
Adds a wrapper script and template to build base images Change-Id: I0b1b1899f43b7d54852d93a2220da0e138c99a58 Issue-ID: AAF-430 Signed-off-by: Manjunath Ranganathaiah <manjunath.ranganathaiah@intel.com>
Diffstat (limited to 'jjb/global-templates-c.yaml')
-rw-r--r--jjb/global-templates-c.yaml53
1 files changed, 53 insertions, 0 deletions
diff --git a/jjb/global-templates-c.yaml b/jjb/global-templates-c.yaml
index fc89511ff..764b0a00c 100644
--- a/jjb/global-templates-c.yaml
+++ b/jjb/global-templates-c.yaml
@@ -49,3 +49,56 @@
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-c-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}'