Skip to content

Commit b87bad7

Browse files
committed
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!
1 parent 7096ff0 commit b87bad7

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/ci/shared.sh

+2
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ function isOSX {
3535
function getCIBranch {
3636
if [ "$TRAVIS" = "true" ]; then
3737
echo "$TRAVIS_BRANCH"
38+
elif [ "$APPVEYOR" = "True" ]; then
39+
echo "$APPVEYOR_REPO_BRANCH"
3840
else
3941
echo "$BUILD_SOURCEBRANCHNAME"
4042
fi;

0 commit comments

Comments
 (0)