[commit: ghc] wip/jenkins: Debug (e4dd926)
git at git.haskell.org
git at git.haskell.org
Sat Jun 17 13:51:29 UTC 2017
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/jenkins
Link : http://ghc.haskell.org/trac/ghc/changeset/e4dd9263241c41b056e01e183d9521ed7bf258e5/ghc
>---------------------------------------------------------------
commit e4dd9263241c41b056e01e183d9521ed7bf258e5
Author: Ben Gamari <ben at smart-cactus.org>
Date: Thu May 18 02:59:40 2017 -0400
Debug
>---------------------------------------------------------------
e4dd9263241c41b056e01e183d9521ed7bf258e5
Jenkinsfile | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index 9af2814..0bd3c7b 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -47,9 +47,11 @@ def buildGhc(params) {
stage('Checkout') {
checkout scm
- sh """git submodule update --init --recursive
- echo hello
- """
+ if (msys) {
+ bat "git submodule update --init --recursive"
+ } else {
+ sh "git submodule update --init --recursive"
+ }
}
stage('Build') {
More information about the ghc-commits
mailing list