Merge pull request #186 from jasmin-j/travis_ci_lang

Fixed travis-ci environment setting
This commit is contained in:
Bryan Hundven 2015-09-23 15:18:28 -07:00
commit 6b9a8727d8

View File

@ -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