git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v1] travis-ci: handle Git for Windows CI status "failed" explicitly
@ 2017-04-29 18:59 Lars Schneider
  0 siblings, 0 replies; only message in thread
From: Lars Schneider @ 2017-04-29 18:59 UTC (permalink / raw)
  To: git; +Cc: gitster, Johannes.Schindelin

Git for Windows CI returns "completed: failed" if a build or test
failure happened. This case was processed as "Unhandled status".
Handle the case explicitly.

Signed-off-by: Lars Schneider <larsxschneider@gmail.com>
---

Notes:
    Base Ref: next
    Web-Diff: https://github.com/larsxschneider/git/commit/57840905a5
    Checkout: git fetch https://github.com/larsxschneider/git travisci/win-fail-v1 && git checkout 57840905a5

 ci/run-windows-build.sh | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/ci/run-windows-build.sh b/ci/run-windows-build.sh
index e043440799..1bb3a021ee 100755
--- a/ci/run-windows-build.sh
+++ b/ci/run-windows-build.sh
@@ -61,7 +61,8 @@ do
 	case "$STATUS" in
 	inProgress|postponed|notStarted) sleep 10               ;; # continue
 		 "completed: succeeded") RESULT="success"; break;; # success
-	*) echo "Unhandled status: $STATUS";               break;; # failure
+		    "completed: failed")                   break;; # failure
+	*) echo "Unhandled status: $STATUS";               break;; # unknown
 	esac
 done
 

base-commit: 1ea7e62026c5dde4d8be80b2544696fc6aa70121
-- 
2.12.2


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2017-04-29 19:03 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-04-29 18:59 [PATCH v1] travis-ci: handle Git for Windows CI status "failed" explicitly Lars Schneider

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).