[commit: ghc] wip/jenkins: Debug (ca84819)
git at git.haskell.org
git at git.haskell.org
Fri Jun 9 07:25:38 UTC 2017
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/jenkins
Link : http://ghc.haskell.org/trac/ghc/changeset/ca8481984b671d203a6f9088bd820b8a794ee27a/ghc
>---------------------------------------------------------------
commit ca8481984b671d203a6f9088bd820b8a794ee27a
Author: Ben Gamari <ben at smart-cactus.org>
Date: Thu May 18 02:59:40 2017 -0400
Debug
>---------------------------------------------------------------
ca8481984b671d203a6f9088bd820b8a794ee27a
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