travis: don't run ninja test for meson
authorDylan Baker <dylan@pnwbakers.com>
Wed, 4 Oct 2017 18:38:04 +0000 (11:38 -0700)
committerDylan Baker <dylan@pnwbakers.com>
Mon, 9 Oct 2017 20:54:46 +0000 (13:54 -0700)
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>
.travis.yml

index 19fd6ac..2998842 100644 (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