зеркало из https://github.com/microsoft/git.git
Merge branch 'ls/travis-relays-for-windows-ci'
* ls/travis-relays-for-windows-ci: travis-ci: retry if Git for Windows CI returns HTTP error 502 or 503 travis-ci: handle Git for Windows CI status "failed" explicitly
This commit is contained in:
Коммит
dcad9a4c87
|
@ -14,14 +14,33 @@ COMMIT=$2
|
||||||
|
|
||||||
gfwci () {
|
gfwci () {
|
||||||
local CURL_ERROR_CODE HTTP_CODE
|
local CURL_ERROR_CODE HTTP_CODE
|
||||||
exec 3>&1
|
CONTENT_FILE=$(mktemp -t "git-windows-ci-XXXXXX")
|
||||||
|
while test -z $HTTP_CODE
|
||||||
|
do
|
||||||
HTTP_CODE=$(curl \
|
HTTP_CODE=$(curl \
|
||||||
-H "Authentication: Bearer $GFW_CI_TOKEN" \
|
-H "Authentication: Bearer $GFW_CI_TOKEN" \
|
||||||
--silent --retry 5 --write-out '%{HTTP_CODE}' \
|
--silent --retry 5 --write-out '%{HTTP_CODE}' \
|
||||||
--output >(sed "$(printf '1s/^\xef\xbb\xbf//')" >cat >&3) \
|
--output >(sed "$(printf '1s/^\xef\xbb\xbf//')" >$CONTENT_FILE) \
|
||||||
"https://git-for-windows-ci.azurewebsites.net/api/TestNow?$1" \
|
"https://git-for-windows-ci.azurewebsites.net/api/TestNow?$1" \
|
||||||
)
|
)
|
||||||
CURL_ERROR_CODE=$?
|
CURL_ERROR_CODE=$?
|
||||||
|
# The GfW CI web app sometimes returns HTTP errors of
|
||||||
|
# "502 bad gateway" or "503 service unavailable".
|
||||||
|
# We also need to check the HTTP content because the GfW web
|
||||||
|
# app seems to pass through (error) results from other Azure
|
||||||
|
# calls with HTTP code 200.
|
||||||
|
# Wait a little and retry if we detect this error. More info:
|
||||||
|
# https://docs.microsoft.com/en-in/azure/app-service-web/app-service-web-troubleshoot-http-502-http-503
|
||||||
|
if test $HTTP_CODE -eq 502 ||
|
||||||
|
test $HTTP_CODE -eq 503 ||
|
||||||
|
grep "502 - Web server received an invalid response" $CONTENT_FILE >/dev/null
|
||||||
|
then
|
||||||
|
sleep 10
|
||||||
|
HTTP_CODE=
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
cat $CONTENT_FILE
|
||||||
|
rm $CONTENT_FILE
|
||||||
if test $CURL_ERROR_CODE -ne 0
|
if test $CURL_ERROR_CODE -ne 0
|
||||||
then
|
then
|
||||||
return $CURL_ERROR_CODE
|
return $CURL_ERROR_CODE
|
||||||
|
@ -61,7 +80,8 @@ do
|
||||||
case "$STATUS" in
|
case "$STATUS" in
|
||||||
inProgress|postponed|notStarted) sleep 10 ;; # continue
|
inProgress|postponed|notStarted) sleep 10 ;; # continue
|
||||||
"completed: succeeded") RESULT="success"; break;; # success
|
"completed: succeeded") RESULT="success"; break;; # success
|
||||||
*) echo "Unhandled status: $STATUS"; break;; # failure
|
"completed: failed") break;; # failure
|
||||||
|
*) echo "Unhandled status: $STATUS"; break;; # unknown
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче