[commit: ghc] wip/jenkins: Fix missing binding (c3f1725)

git at git.haskell.org git at git.haskell.org
Thu Jul 27 20:51:47 UTC 2017


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

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

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

commit c3f1725135cd549d7f81422cfdc59052d173ce35
Author: Ben Gamari <ben at smart-cactus.org>
Date:   Wed May 31 11:36:00 2017 -0400

    Fix missing binding


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

c3f1725135cd549d7f81422cfdc59052d173ce35
 Jenkinsfile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 7df1f02..605a635 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -155,8 +155,9 @@ def buildGhc(params) {
   stage('Prepare binary distribution') {
     sh "${makeCmd} binary-dist"
     def json = new JSONObject()
+    def tarName = getMakeValue(makeCmd, 'BIN_DIST_PREP_TAR_COMP')
     json.put('commit', resolveCommitSha('HEAD'))
-    json.put('tarName', getMakeValue(makeCmd, 'BIN_DIST_PREP_TAR_COMP'))
+    json.put('tarName', tarName)
     json.put('dirName', getMakeValue(makeCmd, 'BIN_DIST_NAME'))
     json.put('ghcVersion', getMakeValue(makeCmd, 'ProjectVersion'))
     json.put('targetPlatform', getMakeValue(makeCmd, 'TARGETPLATFORM'))



More information about the ghc-commits mailing list