[commit: ghc] wip/jenkins: Debug (0c7c876)
git at git.haskell.org
git at git.haskell.org
Wed May 31 18:57:46 UTC 2017
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/jenkins
Link : http://ghc.haskell.org/trac/ghc/changeset/0c7c87608ffdeedcae244573c581444e4fdbc021/ghc
>---------------------------------------------------------------
commit 0c7c87608ffdeedcae244573c581444e4fdbc021
Author: Ben Gamari <ben at smart-cactus.org>
Date: Wed May 31 14:57:34 2017 -0400
Debug
>---------------------------------------------------------------
0c7c87608ffdeedcae244573c581444e4fdbc021
Jenkinsfile | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index 605a635..82aebbb 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -106,7 +106,7 @@ def buildGhc(params) {
stage('Checkout') {
checkout scm
sh "git submodule update --init --recursive"
- sh "${makeCmd} distclean"
+ //sh "${makeCmd} distclean"
}
stage('Configure') {
@@ -155,7 +155,8 @@ def buildGhc(params) {
stage('Prepare binary distribution') {
sh "${makeCmd} binary-dist"
def json = new JSONObject()
- def tarName = getMakeValue(makeCmd, 'BIN_DIST_PREP_TAR_COMP')
+ def tarPath = getMakeValue(makeCmd, 'BIN_DIST_PREP_TAR_COMP')
+ def tarName = sh "basename ${tarPath}"
json.put('commit', resolveCommitSha('HEAD'))
json.put('tarName', tarName)
json.put('dirName', getMakeValue(makeCmd, 'BIN_DIST_NAME'))
@@ -176,6 +177,7 @@ def getMakeValue(String makeCmd, String value) {
def withGhcBinDist(String targetTriple, Closure f) {
unstash "bindist-${targetTriple}"
def metadata = readJSON file: "bindist.json"
+ sh 'cat bindist.json'
sh "tar -xf ${metadata.tarName}"
dir("${metadata.bindistName}") {
try {
More information about the ghc-commits
mailing list