[commit: ghc] wip/jenkins: More debug (68b5bfe)
git at git.haskell.org
git at git.haskell.org
Fri Aug 18 03:57:47 UTC 2017
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/jenkins
Link : http://ghc.haskell.org/trac/ghc/changeset/68b5bfeaaae52d77aacd948e7580bd70aee0122c/ghc
>---------------------------------------------------------------
commit 68b5bfeaaae52d77aacd948e7580bd70aee0122c
Author: Ben Gamari <ben at smart-cactus.org>
Date: Thu Aug 17 23:52:29 2017 -0400
More debug
>---------------------------------------------------------------
68b5bfeaaae52d77aacd948e7580bd70aee0122c
Jenkinsfile | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index 5c5cebe..1103e80 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -159,8 +159,8 @@ def buildGhc(params) {
String makeCmd = params?.makeCmd ?: 'make'
withGhcSrcDist() {
- echo '${targetTriple}'
- echo '${params}'
+ echo "${targetTriple}"
+ echo "${params}"
stage('Configure') {
sh 'echo $PATH'
sh "which ghc"
@@ -189,7 +189,7 @@ def buildGhc(params) {
def configure_opts = []
if (crossCompiling) {
- configure_opts += '--target=${targetTriple}'
+ configure_opts += "--target=${targetTriple}"
}
if (disableLargeAddrSpace) {
configure_opts += '--disable-large-address-space'
More information about the ghc-commits
mailing list