[commit: ghc] wip/jenkins: Don't run nofib on Windows (dd50a91)

git at git.haskell.org git at git.haskell.org
Thu Jul 27 20:49:12 UTC 2017


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

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

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

commit dd50a91e031c08c6ca7b50964905b9e7410c5f67
Author: Ben Gamari <ben at smart-cactus.org>
Date:   Mon May 29 16:14:11 2017 -0400

    Don't run nofib on Windows


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

dd50a91e031c08c6ca7b50964905b9e7410c5f67
 Jenkinsfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index f32df3f..84c175e 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -30,14 +30,14 @@ parallel (
   // Requires cygpath plugin?
   // Make
   "windows 64"         : {
-    node(label: 'windows && amd64') {buildGhc()}
+    node(label: 'windows && amd64') {buildGhc(runNoFib: false)}
   },
   "windows 32"         : {
     node(label: 'windows && amd64') {
       environment {
         PATH = 'C:\\msys64\\mingw32\\bin:C:\\msys64\\home\\ben\\ghc-8.0.2-i386:$PATH'
       }
-      buildGhc()
+      buildGhc(runNoFib: false)
     }
   },
   //"osx"                : {node(label: 'darwin') {buildGhc(runNoFib: params.runNoFib)}}



More information about the ghc-commits mailing list