[commit: ghc] wip/jenkins: Disable non-Windows builds (394772b)

git at git.haskell.org git at git.haskell.org
Thu Jul 27 20:50:23 UTC 2017


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

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

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

commit 394772b621796d28c321e9514f29625b2260f99c
Author: Ben Gamari <ben at smart-cactus.org>
Date:   Mon May 29 19:34:11 2017 -0400

    Disable non-Windows builds


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

394772b621796d28c321e9514f29625b2260f99c
 Jenkinsfile | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/Jenkinsfile b/Jenkinsfile
index 66c8488..e320c49 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -12,6 +12,7 @@ properties(
   ])
 
 parallel (
+  /*
   "linux x86-64"       : {
     node(label: 'linux && amd64') {buildGhc(runNoFib: params.runNofib)}
   },
@@ -29,6 +30,7 @@ parallel (
       buildGhc(runNoFib: false, makeCmd: 'gmake', disableLargeAddrSpace: true)
     }
   },
+  */
   // Requires cygpath plugin?
   // Make
   "windows 64"         : {
@@ -43,6 +45,7 @@ parallel (
       buildGhc(runNoFib: false)
     }
   },
+  /*
   "windows 32"         : {
     node(label: 'windows && amd64') {
       environment {
@@ -52,6 +55,7 @@ parallel (
       buildGhc(runNoFib: false)
     }
   },
+  */
   //"osx"                : {node(label: 'darwin') {buildGhc(runNoFib: params.runNoFib)}}
 )
 



More information about the ghc-commits mailing list