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

git at git.haskell.org git at git.haskell.org
Fri Jul 28 16:43:22 UTC 2017


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

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

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

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

    Don't run nofib on Windows


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

d39084f2e8689307a638f328a6207a4cdc5be752
 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