[commit: ghc] wip/jenkins: windows (d622e6d)

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


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

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

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

commit d622e6d43f4ca92dfd690f9b5dc2ace6b8d8ffde
Author: Ben Gamari <ben at smart-cactus.org>
Date:   Thu May 18 01:55:46 2017 -0400

    windows


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

d622e6d43f4ca92dfd690f9b5dc2ace6b8d8ffde
 Jenkinsfile | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index ecaf027..466a726 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -12,11 +12,13 @@ properties(
   ])
 
 parallel (
-  "linux x86-64" : {node(label: 'linux && amd64') {buildGhc(params.runNofib)}},
+  "linux x86-64"       : {node(label: 'linux && amd64') {buildGhc(params.runNofib)}},
+  "linux x86-64 unreg" : {node(label: 'linux && amd64') {buildGhc(false, null, false)}},
   "linux x86-64 -> aarch64" : {
-                    node(label: 'linux && amd64') {buildGhc(params.runNofib, 'aarch64-linux-gnu')}},
-  "aarch64"      : {node(label: 'linux && aarch64') {buildGhc(false)}},
-  //"osx"          : {node(label: 'darwin') {buildGhc(false)}}
+                          node(label: 'linux && amd64') {buildGhc(params.runNofib, 'aarch64-linux-gnu')}},
+  "aarch64"            : {node(label: 'linux && aarch64') {buildGhc(false)}},
+  "windows 64"         : {node(label: 'windows && amd64') {buildGhc(false)}},
+  //"osx"                : {node(label: 'darwin') {buildGhc(false)}}
 )
 
 def installPackages(String[] pkgs) {



More information about the ghc-commits mailing list