File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 3
3
set -euo pipefail
4
4
5
5
echo -e " travis_fold:start:Python\e[2K"
6
+ echo -e " travis_time:start:Python\e[2K"
7
+ tick=" $( date +%s) "
6
8
echo " Install Python 3.8 from python.org"
7
9
curl -O https://www.python.org/ftp/python/3.8.5/python-3.8.5-macosx10.9.pkg
8
10
sudo installer -package python-3.8.5-macosx10.9.pkg -target /
9
11
sudo ln -s /usr/local/bin/python3 /usr/local/bin/python
10
12
hash -r
13
+ tock=" $( date +%s) "
14
+ echo -e " travis_time:end:Python:start=$tick ,finish=$tock ,duration=$(( tock - tick)) \e[2K"
11
15
echo -e " travis_fold:end:Python\e[2K"
12
16
13
17
echo -e " travis_fold:start:Qt4.8\e[2K"
59
63
echo -e " travis_fold:end:libpng\e[2K"
60
64
61
65
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)'
63
67
curl -O -L https://download.savannah.gnu.org/releases/freetype/freetype-2.6.1.tar.gz
64
68
mkdir -p build
65
69
tar -x -C build -f freetype-2.6.1.tar.gz
You can’t perform that action at this time.
0 commit comments