dmaapbc job def and scripts 55/755/1
authorlj1412 <lji@research.att.com>
Sat, 18 Feb 2017 23:45:12 +0000 (23:45 +0000)
committerlj1412 <lji@research.att.com>
Sat, 18 Feb 2017 23:45:12 +0000 (23:45 +0000)
Change-Id: I711846e9c3da90397fb074a3cb2a18675d670e90
Signed-off-by: lj1412 <lji@research.att.com>
jjb/dcae/dmaapbc.yaml [new file with mode: 0644]
jjb/dcae/script-dmaapbc-daily-release.sh [new file with mode: 0755]
jjb/dcae/script-dmaapbc-merge.sh [new file with mode: 0755]
jjb/dcae/script-dmaapbc-verify.sh [new file with mode: 0755]

diff --git a/jjb/dcae/dmaapbc.yaml b/jjb/dcae/dmaapbc.yaml
new file mode 100644 (file)
index 0000000..dee2e95
--- /dev/null
@@ -0,0 +1,36 @@
+---
+
+- project:
+    name: dcae-dmaapbc
+    # job template iterators
+    project-name: 'dcae-dmaapbc'
+    stream:
+      - 'master':
+          branch: 'master'
+    # apply to all jobs
+    project: 'dcae/dmaapbc'
+    mvn-settings: 'dcae-dmaapbc-settings'
+    # default to no op
+    mvn-goals: '--version'
+    # default to no op
+    mvn-goals-versioning: '--version'
+    files: '**'
+    archive-artifacts: ''
+
+    jobs:
+      - '{project-name}-{stream}-daily-release-scm-mvn-script':
+          mvn-goals-versioning:
+            'versions:set versions:update-child-modules versions:commit'
+          mvn-goals: 'clean deploy'
+          maven-deploy-properties: |
+              deployAtEnd=true
+          script:
+            !include-raw-escape: 'script-dmaapbc-daily-release.sh'
+      - '{project-name}-{stream}-merge-scm-mvn-script':
+          mvn-goals: 'clean deploy'
+          script:
+            !include-raw-escape: 'script-dmaapbc-merge.sh'
+      - '{project-name}-{stream}-verify-scm-mvn-script':
+          mvn-goals: 'clean install'
+          script:
+            !include-raw-escape: 'script-dmaapbc-verify.sh'
diff --git a/jjb/dcae/script-dmaapbc-daily-release.sh b/jjb/dcae/script-dmaapbc-daily-release.sh
new file mode 100755 (executable)
index 0000000..710a319
--- /dev/null
@@ -0,0 +1,34 @@
+#!/bin/bash
+# Create a debian package and push to remote repo
+#
+#
+# build the docker image. tag and then push to the remote repo
+#
+
+# !!! make sure the yaml file include docker-login as a builder before calling
+# this script
+
+IMAGE="dcae_dmaapbc"
+TAG="1.0.0"
+LFQI="${IMAGE}:${TAG}"
+BUILD_PATH="${WORKSPACE}"
+
+# build a docker image
+docker build --rm -f ${WORKSPACE}/Dockerfile -t ${LFQI} ${BUILD_PATH}
+
+
+#
+# push the image
+#
+# io registry  DOCKER_REPOSITORIES="nexus3.openecomp.org:10001 \
+# release registry                   nexus3.openecomp.org:10002 \
+# snapshot registry                   nexus3.openecomp.org:10003"
+REPO="nexus3.openecomp.org:10003"
+
+RFQI="${REPO}/${LFQI}"
+# tag
+docker tag ${LFQI} ${RFQI}
+
+# push to remote repo
+docker push ${RFQI}
+
diff --git a/jjb/dcae/script-dmaapbc-merge.sh b/jjb/dcae/script-dmaapbc-merge.sh
new file mode 100755 (executable)
index 0000000..a80190f
--- /dev/null
@@ -0,0 +1,30 @@
+#!/bin/bash
+# Create a debian package and push to remote repo
+#
+#
+# build the docker image. tag and then push to the remote repo
+#
+
+# !!! make sure the yaml file include docker-login as a builder before calling
+# this script
+
+IMAGE="dcae_dmaapbc"
+TAG="1.0.0"
+LFQI="${IMAGE}:${TAG}"
+BUILD_PATH="${WORKSPACE}"
+
+# build a docker image
+docker build --rm -f ${WORKSPACE}/Dockerfile -t ${LFQI} ${BUILD_PATH}
+
+
+#
+# push the image
+#
+# io registry  DOCKER_REPOSITORIES="nexus3.openecomp.org:10001 \
+# release registry                   nexus3.openecomp.org:10002 \
+# snapshot registry                   nexus3.openecomp.org:10003"
+REPO="nexus3.openecomp.org:10002"
+RFQI="${REPO}/${LFQI}"
+docker tag ${LFQI} ${RFQI}
+docker push ${RFQI}
+
diff --git a/jjb/dcae/script-dmaapbc-verify.sh b/jjb/dcae/script-dmaapbc-verify.sh
new file mode 100755 (executable)
index 0000000..8db2c9c
--- /dev/null
@@ -0,0 +1,19 @@
+#!/bin/bash
+# Create a debian package and push to remote repo
+#
+#
+# build the docker image. tag and then push to the remote repo
+#
+
+# !!! make sure the yaml file include docker-login as a builder before calling
+# this script
+
+IMAGE="dcae_dmaapbc"
+TAG="1.0.0"
+LFQI="${IMAGE}:${TAG}"
+BUILD_PATH="${WORKSPACE}"
+
+# build a docker image
+docker build --rm -f ${WORKSPACE}/Dockerfile -t ${LFQI} ${BUILD_PATH}
+
+