From 68c91264ebb0e5d5647e3dfe01ce1765336c9246 Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Wed, 4 Oct 2017 11:38:04 -0700 Subject: [PATCH] travis: don't run ninja test for meson This pulls in tons of extra dependencies because the tests are not properly guarded. v2: - Put this patch before the one that adds a loader/dri test for meson Signed-off-by: Dylan Baker --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 19fd6ac..2998842 100644 --- a/.travis.yml +++ b/.travis.yml @@ -396,7 +396,7 @@ matrix: - env: - LABEL="meson Vulkan" - BUILD=meson - - MESON_OPTIONS="-Dbuild-tests=true" + - MESON_OPTIONS="" addons: apt: sources: @@ -530,5 +530,5 @@ script: - if test "x$BUILD" = xmeson; then export CFLAGS="$CFLAGS -isystem`pwd`"; meson _build $MESON_OPTIONS; - ninja -C _build test; + ninja -C _build; fi -- 2.7.4