[commit: ghc] wip/jenkins: Debug (6cde743)
git at git.haskell.org
git at git.haskell.org
Fri Jun 9 07:25:11 UTC 2017
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/jenkins
Link : http://ghc.haskell.org/trac/ghc/changeset/6cde7438435591c5526915ed72fbaceb902bb1d4/ghc
>---------------------------------------------------------------
commit 6cde7438435591c5526915ed72fbaceb902bb1d4
Author: Ben Gamari <ben at smart-cactus.org>
Date: Wed May 17 23:42:59 2017 -0400
Debug
>---------------------------------------------------------------
6cde7438435591c5526915ed72fbaceb902bb1d4
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