[commit: ghc] wip/jenkins: Don't run nofib on Windows (480e015)
git at git.haskell.org
git at git.haskell.org
Fri Jun 9 07:24:54 UTC 2017
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/jenkins
Link : http://ghc.haskell.org/trac/ghc/changeset/480e0150e08dcb9714ea213fb6344d6982649e08/ghc
>---------------------------------------------------------------
commit 480e0150e08dcb9714ea213fb6344d6982649e08
Author: Ben Gamari <ben at smart-cactus.org>
Date: Mon May 29 16:14:11 2017 -0400
Don't run nofib on Windows
>---------------------------------------------------------------
480e0150e08dcb9714ea213fb6344d6982649e08
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