[commit: ghc] wip/jenkins: Rip out debug output (47201c9)

git at git.haskell.org git at git.haskell.org
Fri Jun 9 07:24:27 UTC 2017


Repository : ssh://git@git.haskell.org/ghc

On branch  : wip/jenkins
Link       : http://ghc.haskell.org/trac/ghc/changeset/47201c902060e245c1658281b432a7cb25647ec9/ghc

>---------------------------------------------------------------

commit 47201c902060e245c1658281b432a7cb25647ec9
Author: Ben Gamari <ben at smart-cactus.org>
Date:   Sun Jun 4 11:36:21 2017 -0400

    Rip out debug output


>---------------------------------------------------------------

47201c902060e245c1658281b432a7cb25647ec9
 Jenkinsfile | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 1f31e29..db32f78 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -43,7 +43,6 @@ stage("Build source distribution") {
 
       def json = new JSONObject()
       json.put('dirName', "ghc-${version}" as String)
-      echo "${json}"
       writeJSON(file: 'src-dist.json', json: json)
 
       stash(name: 'source-dist', includes: 'ghc-src.tar.xz,ghc-win32-tarballs.tar.xz,src-dist.json')
@@ -225,8 +224,6 @@ def withGhcSrcDist(Closure f) {
 
     def metadata = readJSON file: 'src-dist.json'
     sh "cat src-dist.json"
-    echo "${metadata}"
-    sh "echo ${metadata.dirName}; ls ${metadata.dirName}"
     dir(metadata.dirName) {
       f()
     }
@@ -238,7 +235,6 @@ def withGhcBinDist(String targetTriple, Closure f) {
     unstash "bindist-${targetTriple}"
     unstash "testsuite-dist"
     def metadata = readJSON file: "bindist.json"
-    echo "${metadata}"
     sh "tar -xf ${metadata.tarName}"
     sh "tar -xf ghc-testsuite.tar.xz"
     dir(metadata.dirName) {



More information about the ghc-commits mailing list