[commit: ghc] wip/jenkins: Pass BINDIST to make test (537861a)

git at git.haskell.org git at git.haskell.org
Fri Jul 28 16:45:11 UTC 2017


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

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

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

commit 537861a45f93d5e60fc352d896244de54f1b9ed4
Author: Ben Gamari <ben at smart-cactus.org>
Date:   Mon Jun 5 13:15:45 2017 -0400

    Pass BINDIST to make test


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

537861a45f93d5e60fc352d896244de54f1b9ed4
 Jenkinsfile | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index a051d7c..7abcc9d 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -1,9 +1,11 @@
 #!groovy
 
 /*
-  Dependencies:
+  Jenkins dependencies:
    * Pipeline Utility steps plugin
 
+  Linux (Debian) worker dependencies:
+   * xutil-dev curl automake autoconf libtool python3 python3-sphinx, llvm-4.0
 */
 
 import net.sf.json.JSONObject
@@ -271,8 +273,8 @@ def testGhc(params) {
       if (params.nightly) {
         target = 'slowtest'
       }
-      sh "${makeCmd} -Ctestsuite/tests stage=2 LOCAL=0 THREADS=${env.THREADS} ${target}"
-      sh "${makeCmd} -Ctestsuite/tests/stage1 stage=1 LOCAL=0 THREADS=${env.THREADS} ${target}"
+      sh "${makeCmd} -Ctestsuite/tests stage=2 LOCAL=0 BINDIST=YES THREADS=${env.THREADS} ${target}"
+      sh "${makeCmd} -Ctestsuite/tests/stage1 stage=1 LOCAL=0 BINDIST=YES THREADS=${env.THREADS} ${target}"
     }
 
     stage('Run nofib') {



More information about the ghc-commits mailing list