[commit: ghc] wip/jenkins: Debug (fa8ea54)
git at git.haskell.org
git at git.haskell.org
Sun Jun 4 05:08:34 UTC 2017
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/jenkins
Link : http://ghc.haskell.org/trac/ghc/changeset/fa8ea54027e75b714a9ffff6bed507a1d5c5bf07/ghc
>---------------------------------------------------------------
commit fa8ea54027e75b714a9ffff6bed507a1d5c5bf07
Author: Ben Gamari <ben at smart-cactus.org>
Date: Wed May 17 23:42:59 2017 -0400
Debug
>---------------------------------------------------------------
fa8ea54027e75b714a9ffff6bed507a1d5c5bf07
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