From b87bad7e364c3b5544dd73ae71cd04b05e0c8eb5 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Mon, 3 Jun 2019 07:46:08 -0700 Subject: [PATCH] ci: Reenable step timings on AppVeyor This was accidentally regressed in #60777 by accident, and we've stopped printing out step timings on AppVeyor recently reducing the ability for us to track build times over time! --- src/ci/shared.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ci/shared.sh b/src/ci/shared.sh index 1e667fca587..323d53f2bec 100644 --- a/src/ci/shared.sh +++ b/src/ci/shared.sh @@ -35,6 +35,8 @@ function isOSX { function getCIBranch { if [ "$TRAVIS" = "true" ]; then echo "$TRAVIS_BRANCH" + elif [ "$APPVEYOR" = "True" ]; then + echo "$APPVEYOR_REPO_BRANCH" else echo "$BUILD_SOURCEBRANCHNAME" fi;