Merge "Add triggers to jenkins-cfg job"
authorThanh Ha <thanh.ha@linuxfoundation.org>
Wed, 28 Feb 2018 01:53:04 +0000 (01:53 +0000)
committerGerrit Code Review <gerrit@linuxfoundation.org>
Wed, 28 Feb 2018 01:53:04 +0000 (01:53 +0000)
jjb/lf-maven-jobs.yaml
shell/gerrit-fetch-dependencies.sh

index cd3172b..b2482c1 100644 (file)
     name: lf-update-java-alternatives
     builders:
       - inject:
-          properties-content: 'SET_JDK_VERSION={java-version}'
+          # Work around inject plugin overriding our GIT_URL variable incorrectly
+          # https://issues.jenkins-ci.org/browse/JENKINS-49775
+          properties-content: |
+            SET_JDK_VERSION={java-version}
+            GIT_URL="$GIT_URL"
       - shell: !include-raw-escape: ../shell/update-java-alternatives.sh
       - inject:
           properties-file: '/tmp/java.env'
index 99a71f0..55c0cf1 100644 (file)
@@ -41,6 +41,11 @@ for patch in $(echo "${PATCHES[@]}"); do
     project=$(echo "$json" | jq -r '.project')
     branch=$(echo "$json" | jq -r '.branch')
 
+    if [ "$GERRIT_CHANGE_NUMBER" == "$patch" ]; then
+        echo "WARN: GERRIT_CHANGE and $patch are one and the same. Ignoring patch..."
+        continue
+    fi
+
     if [ ! -d "$REPOS_DIR/$project" ]; then
         git clone -q --depth 1 -b "$branch" "$GIT_URL/$project" "$REPOS_DIR/$project"