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