[commit: ghc] wip/jenkins: Reenable everything else (03a0526)
git at git.haskell.org
git at git.haskell.org
Fri Jul 28 16:41:43 UTC 2017
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/jenkins
Link : http://ghc.haskell.org/trac/ghc/changeset/03a052683c53ea3813bc60e8d4709fbe2d7a086a/ghc
>---------------------------------------------------------------
commit 03a052683c53ea3813bc60e8d4709fbe2d7a086a
Author: Ben Gamari <ben at smart-cactus.org>
Date: Mon May 29 22:45:19 2017 -0400
Reenable everything else
>---------------------------------------------------------------
03a052683c53ea3813bc60e8d4709fbe2d7a086a
Jenkinsfile | 8 ++------
1 file changed, 2 insertions(+), 6 deletions(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index 9c86c4a..90cf036 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -12,7 +12,6 @@ properties(
])
parallel (
- /*
"linux x86-64" : {
node(label: 'linux && amd64') {buildGhc(runNoFib: params.runNofib)}
},
@@ -30,25 +29,22 @@ parallel (
buildGhc(runNoFib: false, makeCmd: 'gmake', disableLargeAddrSpace: true)
}
},
- */
// Requires cygpath plugin?
- // Make
"windows 64" : {
node(label: 'windows && amd64') {
withMingw('MINGW64') { buildGhc(runNoFib: false) }
}
},
- /*
"windows 32" : {
node(label: 'windows && amd64') {
- buildGhc(runNoFib: false)
+ withMingw('MINGW64') { buildGhc(runNoFib: false) }
}
},
- */
//"osx" : {node(label: 'darwin') {buildGhc(runNoFib: params.runNoFib)}}
)
def withMingw(String msystem, Closure f) {
+ // Derived from msys2's /etc/msystem
def msysRoot = 'C:\\msys64'
if (msystem == 'MINGW32') {
prefix = '${msysRoot}\\mingw32'
More information about the ghc-commits
mailing list