[commit: ghc] wip/jenkins: Rip out debug output (6646643)
git at git.haskell.org
git at git.haskell.org
Thu Jul 27 20:52:06 UTC 2017
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/jenkins
Link : http://ghc.haskell.org/trac/ghc/changeset/66466432a27938f6a4f6018e11ef0550bccf645f/ghc
>---------------------------------------------------------------
commit 66466432a27938f6a4f6018e11ef0550bccf645f
Author: Ben Gamari <ben at smart-cactus.org>
Date: Sun Jun 4 11:36:21 2017 -0400
Rip out debug output
>---------------------------------------------------------------
66466432a27938f6a4f6018e11ef0550bccf645f
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