[commit: ghc] wip/jenkins: Debug (1b3a26a)
git at git.haskell.org
git at git.haskell.org
Thu May 18 04:42:52 UTC 2017
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/jenkins
Link : http://ghc.haskell.org/trac/ghc/changeset/1b3a26a2c4cc619937ec8d5d7468b85401ab4589/ghc
>---------------------------------------------------------------
commit 1b3a26a2c4cc619937ec8d5d7468b85401ab4589
Author: Ben Gamari <ben at smart-cactus.org>
Date: Wed May 17 23:42:59 2017 -0400
Debug
>---------------------------------------------------------------
1b3a26a2c4cc619937ec8d5d7468b85401ab4589
Jenkinsfile | 11 ++++++++++-
1 file changed, 10 insertions(+), 1 deletion(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index f9debf5..89a9dbb 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -11,9 +11,18 @@ properties(
])
])
+if (false) {
+ 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