Skip to content

Commit

Permalink
ci: Reenable step timings on AppVeyor
Browse files Browse the repository at this point in the history
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!
  • Loading branch information
alexcrichton committed Jun 3, 2019
1 parent 7096ff0 commit b87bad7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/ci/shared.sh
Expand Up @@ -35,6 +35,8 @@ function isOSX {
function getCIBranch { function getCIBranch {
if [ "$TRAVIS" = "true" ]; then if [ "$TRAVIS" = "true" ]; then
echo "$TRAVIS_BRANCH" echo "$TRAVIS_BRANCH"
elif [ "$APPVEYOR" = "True" ]; then
echo "$APPVEYOR_REPO_BRANCH"
else else
echo "$BUILD_SOURCEBRANCHNAME" echo "$BUILD_SOURCEBRANCHNAME"
fi; fi;
Expand Down

0 comments on commit b87bad7

Please sign in to comment.