Creates a job to nightly build sshsm docker images 75/60775/8
authorManjunath Ranganathaiah <manjunath.ranganathaiah@intel.com>
Wed, 15 Aug 2018 18:42:10 +0000 (11:42 -0700)
committerManjunath Ranganathaiah <manjunath.ranganathaiah@intel.com>
Thu, 16 Aug 2018 17:47:29 +0000 (10:47 -0700)
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>
jjb/aaf/aaf-sshsm.yaml
jjb/aaf/build-sshsm-docker-images.sh [new file with mode: 0755]
jjb/global-templates-c.yaml

index 4bab946..7e007ec 100644 (file)
@@ -9,6 +9,9 @@
       - '{project-name}-{stream}-verify-c':
          script:
             !include-raw-escape: 'build-sshsm.sh'
+      - '{project-name}-{stream}-docker-c-shell-daily':
+         script:
+            !include-raw-escape: 'build-sshsm-docker-images.sh'
     stream:
       - 'master':
           branch: 'master'
diff --git a/jjb/aaf/build-sshsm-docker-images.sh b/jjb/aaf/build-sshsm-docker-images.sh
new file mode 100755 (executable)
index 0000000..b70c13d
--- /dev/null
@@ -0,0 +1,11 @@
+#!/bin/bash
+#
+echo '============== CALLING SCRIPT TO BUILD DOCKER IMAGES ================='
+
+CURRENTDIR="$(pwd)"
+echo $CURRENTDIR
+
+echo 'Building AAF/sshsm base containers'
+cd bin/base
+chmod 755 build_base_images.sh
+sh build_base_images.sh
index fc89511..764b0a0 100644 (file)
     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}'