From: Eric Engestrom Date: Fri, 8 Mar 2019 15:33:39 +0000 (+0000) Subject: travis: clean up X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=08b70e1c2b82d8ddfa067baf686095b84ddbb636;p=mesa.git travis: clean up Signed-off-by: Eric Engestrom --- diff --git a/.travis.yml b/.travis.yml index e13f384a2a3..382c2efcf76 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,8 +14,6 @@ matrix: - env: - LABEL="macOS make" - BUILD=make - - MAKEFLAGS="-j4" - - MAKE_CHECK_COMMAND="make check" - DRI_LOADERS="--with-platforms=x11 --disable-egl" os: osx - env: @@ -66,6 +64,7 @@ install: script: - if test "x$BUILD" = xmake; then export CFLAGS="$CFLAGS -isystem`pwd`"; + export MAKEFLAGS="-j4"; mkdir build && cd build && @@ -78,7 +77,7 @@ script: --with-vulkan-drivers=$VULKAN_DRIVERS --disable-llvm-shared-libs && - make && eval $MAKE_CHECK_COMMAND; + make && make check; fi - |