[Python-checkins] [2.7] Travis: use ccache (GH-3307) (#3333)

Christian Heimes webhook-mailer at python.org
Tue Sep 5 13:14:06 EDT 2017


https://github.com/python/cpython/commit/9721e51daf59e9a2f56dbf7c2428ea79c0b13be0
commit: 9721e51daf59e9a2f56dbf7c2428ea79c0b13be0
branch: 2.7
author: Christian Heimes <christian at python.org>
committer: GitHub <noreply at github.com>
date: 2017-09-05T19:14:03+02:00
summary:

[2.7] Travis: use ccache (GH-3307) (#3333)

(cherry picked from commit 8adc73c)

files:
M .travis.yml

diff --git a/.travis.yml b/.travis.yml
index d73cb9e3189..571dd045e2d 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -3,8 +3,10 @@ dist: trusty
 sudo: false
 group: beta
 
-# To cache doc-building dependencies.
-cache: pip
+# To cache doc-building dependencies and C compiler output.
+cache:
+    - pip
+    - ccache
 
 branches:
   only:



More information about the Python-checkins mailing list