[commit: ghc] wip/jenkins: Rip out debug output (dc230c0)
git at git.haskell.org
git at git.haskell.org
Sun Jun 4 16:32:50 UTC 2017
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/jenkins
Link : http://ghc.haskell.org/trac/ghc/changeset/dc230c01feaed8e87d46f7a33f8dc071234e505c/ghc
>---------------------------------------------------------------
commit dc230c01feaed8e87d46f7a33f8dc071234e505c
Author: Ben Gamari <ben at smart-cactus.org>
Date: Sun Jun 4 11:36:21 2017 -0400
Rip out debug output
>---------------------------------------------------------------
dc230c01feaed8e87d46f7a33f8dc071234e505c
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