Add push-upstream job 24/224/4
authorConor Ward <conor.ward@est.tech>
Wed, 2 Jan 2019 15:54:28 +0000 (15:54 +0000)
committerConor Ward <conor.ward@est.tech>
Thu, 3 Jan 2019 09:12:58 +0000 (09:12 +0000)
Added script, template and job to test.

Change-Id: Id58910568fe8d2952a4f71c4b317f8db75168dfa
Signed-off-by: Conor Ward <conor.ward@est.tech>
jjb/dmaap/dmaap-datarouter-push-upstream-jobs.yaml [new file with mode: 0644]
jjb/global/global-templates-push-upstream.yaml [new file with mode: 0644]
jjb/global/jjb-macros.yaml
jjb/global/push-upstream-jobs.sh [new file with mode: 0755]

diff --git a/jjb/dmaap/dmaap-datarouter-push-upstream-jobs.yaml b/jjb/dmaap/dmaap-datarouter-push-upstream-jobs.yaml
new file mode 100644 (file)
index 0000000..5acd605
--- /dev/null
@@ -0,0 +1,9 @@
+---
+# this job gets triggered when push-upstream is commented on a change on Nordix Gerrit.
+- project:
+    name: dmaap-datarouter-push-upstream
+    project: dmaap/datarouter
+    project-name: dmaap-datarouter
+    branch: nordix-dev
+    jobs:
+      - '{project-name}-push-upstream'
diff --git a/jjb/global/global-templates-push-upstream.yaml b/jjb/global/global-templates-push-upstream.yaml
new file mode 100644 (file)
index 0000000..06528c8
--- /dev/null
@@ -0,0 +1,30 @@
+- job-template:
+    name: '{project-name}-push-upstream'
+
+    node: onap-ubuntu1604
+
+    disabled: false
+
+    concurrent: true
+
+    parameters:
+      - project-parameters:
+          project: '{project}'
+          branch: '{branch}'
+      - nordix-gerrit-parameters
+
+    scm:
+      - git-scm-gerrit:
+          ssh-credentials-id: nordixinfra-nordix-gerrit-ssh
+          branch: '{branch}'
+          refspec: $GERRIT_REFSPEC
+
+    triggers:
+      - nordix-gerrit-push-upstream:
+          project: '{project}'
+          branch: '{branch}'
+          files: '**'
+
+    builders:
+      - shell:
+          !include-raw-escape: ./push-upstream-jobs.sh
index 3b7c8f7187eac81e0d4a34bb0e446aa85a584d53..3de22ee034a4ef7edb49b42585d90cb873d03a56 100644 (file)
                 - compare-type: 'ANT'
                   pattern: '{files}'
 
+- trigger:
+    name: nordix-gerrit-push-upstream
+    triggers:
+      - gerrit:
+          server-name: 'Nordix Gerrit'
+          trigger-on:
+            - comment-added-contains-event:
+                comment-contains-value: 'push-upstream'
+          projects:
+            - project-compare-type: 'ANT'
+              project-pattern: '{project}'
+              branches:
+                - branch-compare-type: 'ANT'
+                  branch-pattern: '**/{branch}'
+              file-paths:
+                - compare-type: 'ANT'
+                  pattern: '{files}'
+
 # triggers for ONAP Gerrit
 - trigger:
     name: onap-gerrit-trigger-change-merged
diff --git a/jjb/global/push-upstream-jobs.sh b/jjb/global/push-upstream-jobs.sh
new file mode 100755 (executable)
index 0000000..12f0ab2
--- /dev/null
@@ -0,0 +1,61 @@
+#! /bin/bash
+
+# ============LICENSE_START=======================================================
+#  Copyright (C) 2019 The Nordix Foundation. All rights reserved.
+# ================================================================================
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+# SPDX-License-Identifier: Apache-2.0
+# ============LICENSE_END=========================================================
+
+#
+# This script will take the changes that are pushed to Nordix Gerrit and push upstream to ONAP
+# Pre-requisites for script to run successfully:
+# - Author name in Nordix Gerrit equals LFID i.e. need to run "git config --global user.name <LFID>"
+# - infra public key on build server needs to be added to your users SSH Public Keys in ONAP Gerrit
+#
+
+cd $WORKSPACE
+
+project=$(git config --local remote.origin.url | awk -F "29418/" '{print $2}')
+message=$(git show -s --pretty=%B | grep -vi 'Signed-off-by')
+username=$(git show -s --pretty=%an)
+
+pattern=" "
+if [[ "$username" =~ $pattern ]]
+then
+    echo "Incorrect username, use Linux Foundation ID as git user.name when pushing to Nordix"
+    exit 1
+fi
+
+git config user.email $(git show -s --pretty=%ae)
+git config user.name $username
+
+git reset HEAD~1
+git checkout -b delivery_branch origin/master
+
+echo '[remote "upstream"]' >> .git/config
+echo "  url = ssh://$username@gerrit.onap.org:29418/$project.git" >> .git/config
+echo "  fetch = +refs/heads/*:refs/remotes/upstream/*" >> .git/config
+
+git commit -as -m "$message"
+
+git push upstream HEAD:refs/for/master
+retVal=$?
+if [[ $retVal -eq 0 ]]
+then
+  echo "Push upstream to ONAP succeeded"
+else
+  echo "Push upstream to ONAP failed"
+  exit 2
+fi