[commit: ghc] wip/jenkins: Debuggging (2aaf460)
git at git.haskell.org
git at git.haskell.org
Thu Jul 27 20:50:31 UTC 2017
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/jenkins
Link : http://ghc.haskell.org/trac/ghc/changeset/2aaf46062806e57a225bfb6c20e92d7469b05a8f/ghc
>---------------------------------------------------------------
commit 2aaf46062806e57a225bfb6c20e92d7469b05a8f
Author: Ben Gamari <ben at smart-cactus.org>
Date: Sun Jun 4 11:12:23 2017 -0400
Debuggging
>---------------------------------------------------------------
2aaf46062806e57a225bfb6c20e92d7469b05a8f
Jenkinsfile | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index 59daa63..a1a6b13 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -223,6 +223,8 @@ def withGhcSrcDist(Closure f) {
}
def metadata = readJSON file: 'src-dist.json'
+ echo "${metadata}"
+ sh "${metadata.dirName}"
dir(metadata.dirName) {
f()
}
@@ -237,7 +239,7 @@ def withGhcBinDist(String targetTriple, Closure f) {
echo "${metadata}"
sh "tar -xf ${metadata.tarName}"
sh "tar -xf ghc-testsuite.tar.xz"
- dir("${metadata.dirName}") {
+ dir(metadata.dirName) {
try {
f()
} finally {
More information about the ghc-commits
mailing list