Skip to content

Commit 6595c22

Browse files
authored
Rollup merge of rust-lang#61489 - alexcrichton:appveyor-timings, r=pietroalbini
ci: Reenable step timings on AppVeyor This was accidentally regressed in rust-lang#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!
2 parents ec206f2 + b87bad7 commit 6595c22

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/ci/shared.sh

Lines changed: 2 additions & 0 deletions
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)