summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2015-08-31 22:19:46 +0100
committerChris Wilson <chris+github@qwirx.com>2015-08-31 22:19:46 +0100
commitea80beaa0bd7064ac334a001051e07af81d0b820 (patch)
tree1bf1f23f7c9ebf37735e327bdf6629ecf3928089 /.travis.yml
parent12ceb036f826c4796a47397f0c24aa3bdcf4ed42 (diff)
Enable ccache to speed up builds
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml21
1 files changed, 14 insertions, 7 deletions
diff --git a/.travis.yml b/.travis.yml
index 977cbba7..0dbca826 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,12 +1,19 @@
language: cpp
+
branches:
only:
- master
+
compiler:
- gcc
- clang
-cache: apt
+
+cache:
+ - apt
+ - ccache
+
sudo: false
+
addons:
apt:
packages:
@@ -17,12 +24,12 @@ addons:
- xsltproc
- zlib1g-dev
-before_script:
- - ./bootstrap
- - ./configure
- - make
+before_script:
+ - ./bootstrap
+ - ./configure
+ - make
-script:
- - ./runtest.pl ALL debug
+script:
+ - ./runtest.pl ALL debug
- ./runtest.pl ALL release