[commit: ghc] wip/jenkins: No need to boot (da09987)
git at git.haskell.org
git at git.haskell.org
Fri Jul 28 16:43:36 UTC 2017
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/jenkins
Link : http://ghc.haskell.org/trac/ghc/changeset/da099870836b83c98ebf8f348e967db1fcd7d360/ghc
>---------------------------------------------------------------
commit da099870836b83c98ebf8f348e967db1fcd7d360
Author: Ben Gamari <ben at smart-cactus.org>
Date: Sun Jun 4 10:54:49 2017 -0400
No need to boot
>---------------------------------------------------------------
da099870836b83c98ebf8f348e967db1fcd7d360
Jenkinsfile | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index b7c9db5..410a86d 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -29,7 +29,10 @@ stage("Build source distribution") {
"""
}
stage("Configuring tree") {
- sh "./configure"
+ sh """
+ ./boot
+ ./configure
+ """
}
stage("Build tarballs") {
def version = getMakeValue('make', 'ProjectVersion')
@@ -162,10 +165,7 @@ def buildGhc(params) {
if (unreg) {
configure_opts += '--enable-unregisterised'
}
- sh """
- ./boot
- ./configure ${configure_opts.join(' ')}
- """
+ sh "./configure ${configure_opts.join(' ')}"
}
stage('Build') {
More information about the ghc-commits
mailing list