You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by bu...@apache.org on 2017/08/21 03:18:16 UTC

hbase git commit: HBASE-18467 fixing substitutions. debug output of changeSets

Repository: hbase
Updated Branches:
  refs/heads/HBASE-18467 949b0aff6 -> 8e76d38b1


HBASE-18467 fixing substitutions. debug output of changeSets


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/8e76d38b
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/8e76d38b
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/8e76d38b

Branch: refs/heads/HBASE-18467
Commit: 8e76d38b14cd26a66546c23688d077542c7a7234
Parents: 949b0af
Author: Sean Busbey <bu...@apache.org>
Authored: Sun Aug 20 22:17:58 2017 -0500
Committer: Sean Busbey <bu...@apache.org>
Committed: Sun Aug 20 22:17:58 2017 -0500

----------------------------------------------------------------------
 dev-support/Jenkinsfile | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/8e76d38b/dev-support/Jenkinsfile
----------------------------------------------------------------------
diff --git a/dev-support/Jenkinsfile b/dev-support/Jenkinsfile
index e4ddbba..b9e283e 100644
--- a/dev-support/Jenkinsfile
+++ b/dev-support/Jenkinsfile
@@ -137,7 +137,7 @@ curl -L  -o personality.sh "${env.PROJET_PERSONALITY}"
             commentfile="${OUTPUTDIR}/failure"
             echo '(x) *{color:red}-1 general checks{color}*' >> "${commentfile}"
           fi
-          echo '-- For more information [see general report|${BUILD_URL}/General_Nightly_Build_Report/]' >> "${commentfile}"
+          echo "-- For more information [see general report|${BUILD_URL}/General_Nightly_Build_Report/]" >> "${commentfile}"
         '''
       }
       post {
@@ -182,7 +182,7 @@ curl -L  -o personality.sh "${env.PROJET_PERSONALITY}"
             commentfile="${OUTPUTDIR}/failure"
             echo '(x) *{color:red}-1 jdk7 checks{color}*' >> "${commentfile}"
           fi
-          echo '-- For more information [see jdk7 report|${BUILD_URL}/JDK7_Nightly_Build_Report/]' >> "${commentfile}"
+          echo "-- For more information [see jdk7 report|${BUILD_URL}/JDK7_Nightly_Build_Report/]" >> "${commentfile}"
         '''
       }
       post {
@@ -242,7 +242,7 @@ curl -L  -o personality.sh "${env.PROJET_PERSONALITY}"
             commentfile="${OUTPUTDIR}/failure"
             echo '(x) *{color:red}-1 jdk8 checks{color}*' >> "${commentfile}"
           fi
-          echo '-- For more information [see jdk8 report|${BUILD_URL}/JDK8_Nightly_Build_Report/]' >> "${commentfile}"
+          echo "-- For more information [see jdk8 report|${BUILD_URL}/JDK8_Nightly_Build_Report/]" >> "${commentfile}"
         '''
       }
       post {
@@ -376,15 +376,16 @@ END
             // Ideally get the committer our of the change and @ mention them in the per-jira comment
             comment += 'Committer, please check your recent inclusion of a patch for this issue.\\'
          }
-         comment += "	[build ${currentBuild.displayName} on builds.a.o|${env.BUILD_URL}]: ${currentBuild.result}\\----\\details (if available):"
-         echo "[DEBUG] Comment so far: "
-         echo comment
+         comment += "	[build ${currentBuild.displayName} on builds.a.o|${env.BUILD_URL}]: ${currentBuild.result}\\----\\details (if available):\n"
+         //echo "[DEBUG] Comment so far: "
+         //echo comment
          echo ""
          echo "[DEBUG] trying to aggregate step-wise results"
          comment += results.collect { fileExists(file: it) ? readFile(file: it) : "\n" }.join("\n")
          echo "[INFO] Comment:"
          echo comment
          echo ""
+         echo "[DEBUG] ${currentBuild.changeSets}"
          echo "[INFO] ${currentBuild.changeSets.size} changes"
          def seenJiras = []
          for ( change in currentBuild.changeSets ) {