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 <dylanx.c.baker@intel.com>
This commit is contained in:
Dylan Baker 2017-10-04 11:38:04 -07:00
parent c2cd5801cd
commit 68c91264eb

View file

@ -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