[commit: ghc] wip/jenkins: Debug (a216c49)

git at git.haskell.org git at git.haskell.org
Thu May 18 04:27:29 UTC 2017


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

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

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

commit a216c493bb6d344bc7310caa7be5c5920fee08f1
Author: Ben Gamari <ben at smart-cactus.org>
Date:   Wed May 17 23:42:59 2017 -0400

    Debug


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

a216c493bb6d344bc7310caa7be5c5920fee08f1
 Jenkinsfile | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index f9debf5..e301557 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -12,9 +12,15 @@ properties(
   ])
 
 parallel (
-  "linux x86-64" : {node(label: 'linux && amd64') {buildGhc(params.runNofib)}},
-  "aarch64"      : {node(label: 'aarch64') {buildGhc(false)}},
-  "osx"          : {node(label: 'darwin') {buildGhc(false)}}
+  "test" : {node(label: 'linux && aarch64') {
+      stage('Testing') {
+        sh 'pwd'
+        sh 'git clone git://git.haskell.org/ghc'
+      }
+    }}
+  //"linux x86-64" : {node(label: 'linux && amd64') {buildGhc(params.runNofib)}},
+  //"aarch64"      : {node(label: 'linux && aarch64') {buildGhc(false)}},
+  //"osx"          : {node(label: 'darwin') {buildGhc(false)}}
 )
 
 def installPackages(String[] pkgs) {



More information about the ghc-commits mailing list