[commit: ghc] wip/jenkins: Debug (14bf23d)

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


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

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

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

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

    Debug


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

14bf23da13c788511915d4a7f962c27c58e4c5ed
 Jenkinsfile | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index f9debf5..9f49a40 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -11,9 +11,16 @@ properties(
       ])
   ])
 
+node(label: 'linux && aarch64') {
+  stage('Testing') {
+    sh 'pwd'
+    sh 'git clone git://git.haskell.org/ghc'
+  }
+}
+
 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