summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2015-09-20 21:39:55 +0100
committerChris Wilson <chris+github@qwirx.com>2015-09-20 21:39:55 +0100
commit00bfaeccdf81fca6d4c614b4622d71b9ecda911f (patch)
treebc4b9600720839164accc14d31ddac693e0c470e
parenteaa6b1883ba00ab32715f74572ba240286821a6b (diff)
parentb9153d7f32bd461b8eeed68552151295f0fcee37 (diff)
Merge branch 'master' into fix_arm_struct_packing
-rw-r--r--.travis.yml25
1 files changed, 17 insertions, 8 deletions
diff --git a/.travis.yml b/.travis.yml
index 977cbba7..a2c4c9b1 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,14 @@ addons:
- xsltproc
- zlib1g-dev
-before_script:
- - ./bootstrap
- - ./configure
- - make
+before_script:
+ - ccache -s
+ - ./bootstrap
+ - ./configure CC="ccache $CC" CXX="ccache $CXX"
+ - grep CXX config.status
+ - make
-script:
- - ./runtest.pl ALL debug
+script:
+ - ./runtest.pl ALL debug
- ./runtest.pl ALL release
-
+ - ccache -s