From f4516e06ed2906ff0129d7f00dced1108d921b29 Mon Sep 17 00:00:00 2001 From: Cameron Cawley Date: Wed, 24 Jun 2020 19:32:27 +0100 Subject: [PATCH] TRAVIS: Only enable OPL2LPT and text console support on Linux --- .travis.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 17872a578f2..afa01cb818f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -63,9 +63,11 @@ matrix: include: - os: linux compiler: gcc + env: CONFIGFLAGS="--enable-opl2lpt --enable-text-console" cache: ccache - os: linux compiler: clang + env: CONFIGFLAGS="--enable-opl2lpt --enable-text-console" cache: ccache before_script: - sudo ln -s $(which ccache) /usr/lib/ccache/clang @@ -85,7 +87,7 @@ script: - ccache --show-stats > /tmp/ccache_before - export PATH="/usr/local/opt/ccache/libexec:/usr/lib/ccache:$PATH" - export CCACHE_COMPRESS=1 - - ./configure --enable-all-engines --enable-opl2lpt --enable-text-console + - ./configure --enable-all-engines $CONFIGFLAGS - make -j 2 - make test - make devtools