[commit: ghc] wip/jenkins: Fix tarName (fb37013)
git at git.haskell.org
git at git.haskell.org
Fri Jul 28 16:41:27 UTC 2017
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/jenkins
Link : http://ghc.haskell.org/trac/ghc/changeset/fb370132abe8f1a9df0e1dc750c8c133ac1e3c42/ghc
>---------------------------------------------------------------
commit fb370132abe8f1a9df0e1dc750c8c133ac1e3c42
Author: Ben Gamari <ben at smart-cactus.org>
Date: Sat Jun 3 21:33:12 2017 -0400
Fix tarName
>---------------------------------------------------------------
fb370132abe8f1a9df0e1dc750c8c133ac1e3c42
Jenkinsfile | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index b40186c..830afd1 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -156,14 +156,13 @@ def buildGhc(params) {
sh "${makeCmd} binary-dist"
def json = new JSONObject()
def tarPath = getMakeValue(makeCmd, 'BIN_DIST_PREP_TAR_COMP')
- def tarName = sh "basename ${tarPath}"
+ def tarName = sh(script: "basename ${tarPath}", returnStdout: true)
json.put('commit', resolveCommitSha('HEAD'))
json.put('tarName', tarName)
json.put('dirName', getMakeValue(makeCmd, 'BIN_DIST_NAME'))
json.put('ghcVersion', getMakeValue(makeCmd, 'ProjectVersion'))
json.put('targetPlatform', getMakeValue(makeCmd, 'TARGETPLATFORM'))
echo "${json}"
- echo json.toString()
writeJSON(file: 'bindist.json', json: json)
// Write a file so we can easily file the tarball and bindist directory later
stash(name: "bindist-${targetTriple}", includes: "bindist.json,${tarName}")
More information about the ghc-commits
mailing list