[commit: ghc] wip/jenkins: Don't run nofib on Windows (518a45e)
git at git.haskell.org
git at git.haskell.org
Sat Jun 17 13:50:21 UTC 2017
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/jenkins
Link : http://ghc.haskell.org/trac/ghc/changeset/518a45efdebe934c9db1a35d42ddfddb223cc66d/ghc
>---------------------------------------------------------------
commit 518a45efdebe934c9db1a35d42ddfddb223cc66d
Author: Ben Gamari <ben at smart-cactus.org>
Date: Mon May 29 16:14:11 2017 -0400
Don't run nofib on Windows
>---------------------------------------------------------------
518a45efdebe934c9db1a35d42ddfddb223cc66d
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