[commit: ghc] wip/jenkins: Debug (5008e3e)

git at git.haskell.org git at git.haskell.org
Thu Jul 27 20:48:41 UTC 2017


Repository : ssh://git@git.haskell.org/ghc

On branch  : wip/jenkins
Link       : http://ghc.haskell.org/trac/ghc/changeset/5008e3e0e6dd7f2b9f81ef97221f38b373b5aa3c/ghc

>---------------------------------------------------------------

commit 5008e3e0e6dd7f2b9f81ef97221f38b373b5aa3c
Author: Ben Gamari <ben at smart-cactus.org>
Date:   Thu May 18 02:59:40 2017 -0400

    Debug


>---------------------------------------------------------------

5008e3e0e6dd7f2b9f81ef97221f38b373b5aa3c
 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