8000 See if we can add timings to the titles · matplotlib/matplotlib@ffddd20 · GitHub
[go: up one dir, main page]

Skip to content

Commit ffddd20

Browse files
committed
See if we can add timings to the titles
1 parent 4cfaa9e commit ffddd20

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

ci/osx-deps

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,15 @@
33
set -euo pipefail
44

55
echo -e "travis_fold:start:Python\e[2K"
6+
echo -e "travis_time:start:Python\e[2K"
7+
tick="$(date +%s)"
68
echo "Install Python 3.8 from python.org"
79
curl -O https://www.python.org/ftp/python/3.8.5/python-3.8.5-macosx10.9.pkg
810
sudo installer -package python-3.8.5-macosx10.9.pkg -target /
911
sudo ln -s /usr/local/bin/python3 /usr/local/bin/python
1012
hash -r
13+
tock="$(date +%s)"
14+
echo -e "travis_time:end:Python:start=$tick,finish=$tock,duration=$((tock - tick))\e[2K"
1115
echo -e "travis_fold:end:Python\e[2K"
1216

1317
echo -e "travis_fold:start:Qt4.8\e[2K"
@@ -59,7 +63,7 @@ popd
5963
echo -e "travis_fold:end:libpng\e[2K"
6064

6165
echo -e "travis_fold:start:freetype\e[2K"
62-
echo 'Install libpng (just unpack into the build directory)'
66+
echo 'Install freetype (just unpack into the build directory)'
6367
curl -O -L https://download.savannah.gnu.org/releases/freetype/freetype-2.6.1.tar.gz
6468
mkdir -p build
6569
tar -x -C build -f freetype-2.6.1.tar.gz

0 commit comments

Comments
 (0)
0