summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorJasmin Jessich <jasmin@anw.at>2015-09-23 19:30:59 (GMT)
committerJasmin Jessich <jasmin@anw.at>2015-09-23 19:30:59 (GMT)
commit4b25ad15a0d6cfb0bf103019fc00903a70fdb105 (patch)
tree973b6f04fc69b0d0fab4145c65db0f915abcf540 /.travis.yml
parent2acb5e7b17a569ccc58ad5f8229a7a41a5a2fd6c (diff)
Set language to 'bash' to get rid of interfering environment variable CC=gcc.
Signed-off-by: Jasmin Jessich <jasmin@anw.at>
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml10
1 files changed, 6 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index e14d9bc..93765c7 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,16 +1,17 @@
# Using container-based infrastructure
sudo: false
-# Using C GCC compiler only
-language: c
-compiler: gcc
+# 'bash' will define a generic environment without interfering environment
+# settings like "CC=gcc"
+language: bash
# Only build the master branch
branches:
only:
- master
-# Caching the downloaded src packages between several builds
+# Caching the downloaded src packages between several builds to save travis-ci
+# download time and bandwidth
cache:
directories:
- $HOME/src
@@ -47,3 +48,4 @@ script:
# On failure displaying the last lines of the log file
after_failure:
- tail -n 200 build.log
+