From d82e81816b5e8e3aa033e92b44d188684f1218ac Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Fri, 16 May 2014 10:40:11 +0200 Subject: [PATCH] travis: reduce matrix by not compiling everything with clang Only compile with all options when using clang. --- .travis.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7241bbfe..87ca3c66 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,6 @@ language: c os: linux -compiler: - - clang - - gcc +compiler: gcc install: - ./.travis/install.sh script: @@ -17,6 +15,9 @@ env: - LLDPD_CONFIG_ARGS="--with-snmp --with-xml --with-json --disable-lldpmed --disable-dot1 --disable-dot3" matrix: include: + - os: linux + compiler: clang + env: LLDPD_CONFIG_ARGS="--with-snmp --with-xml --with-json" - os: osx compiler: clang env: LLDPD_CONFIG_ARGS="--with-embedded-libevent" -- 2.39.5