[commit: ghc] wip/jenkins: Debug (22a9b99)

git at git.haskell.org git at git.haskell.org
Fri Jul 28 16:42:08 UTC 2017


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

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

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

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

    Debug


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

22a9b995a091ca4cc7158e68eb2de5895d0d6b87
 Jenkinsfile | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index f9debf5..16ab84c 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -11,9 +11,19 @@ properties(
       ])
   ])
 
+if (true) {
+  node(label: 'linux && aarch64') {
+    stage('Testing') {
+      sh 'pwd'
+      git 'git://git.haskell.org/ghc'
+      sh 'ls'
+    }
+  }
+}
+
 parallel (
   "linux x86-64" : {node(label: 'linux && amd64') {buildGhc(params.runNofib)}},
-  "aarch64"      : {node(label: 'aarch64') {buildGhc(false)}},
+  "aarch64"      : {node(label: 'linux && aarch64') {buildGhc(false)}},
   "osx"          : {node(label: 'darwin') {buildGhc(false)}}
 )
 



More information about the ghc-commits mailing list