From 683185aee1460d4966acdf7343b6813b5853011e Mon Sep 17 00:00:00 2001 From: Maarten Bent Date: Thu, 1 Feb 2018 00:02:02 +0100 Subject: [PATCH] Explicitly mention build environments for Travis CI This removes a duplicate build on Travis, cause by a change of the default build environment. --- .travis.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index afc314c983..66d6216a07 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,11 +7,13 @@ sudo: required matrix: include: - - compiler: gcc - - compiler: gcc - env: wxCONFIGURE_FLAGS="--enable-utf8 --enable-utf8only --enable-monolithic" + - dist: precise + compiler: gcc - dist: trusty compiler: gcc + - dist: trusty + compiler: gcc + env: wxCONFIGURE_FLAGS="--enable-utf8 --enable-utf8only --enable-monolithic" - dist: trusty compiler: gcc env: wxGTK_VERSION=3 wxCONFIGURE_FLAGS="--enable-cxx11 --enable-stl" wxMAKEFILE_FLAGS="CXXFLAGS=-std=c++11"