Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2c1a307 + 939fa6f commit b65d2c4Copy full SHA for b65d2c4
.travis.yml
@@ -1,5 +1,10 @@
1
sudo: false
2
3
+cache:
4
+ directories:
5
+ - $HOME/.ccache
6
+ - $HOME/.cache/pip
7
+
8
addons:
9
apt:
10
packages:
@@ -55,12 +60,15 @@ before_install:
55
60
# Install into our own pristine virtualenv
56
61
- virtualenv --python=python venv
57
62
- source venv/bin/activate
63
+ - export PATH=/usr/lib/ccache:$PATH
58
64
59
65
install:
66
+ - ccache -s
67
# Upgrade pip and setuptools. Mock has issues with the default version of
68
# setuptools
69
- |
70
pip install --upgrade pip
71
+ pip install --upgrade wheel
72
pip install --upgrade setuptools
73
# Install only from travis wheelhouse
74
- if [ -z "$PRE" ]; then
0 commit comments