summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2017-10-04 11:38:04 -0700
committerDylan Baker <dylan@pnwbakers.com>2017-10-09 13:54:46 -0700
commit68c91264ebb0e5d5647e3dfe01ce1765336c9246 (patch)
tree1354d5d70ebe96435d4b5d64796836bda4474f43 /.travis.yml
parentc2cd5801cd1f05f8833a4c1c097b07757f763794 (diff)
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>
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 19fd6acf3b..2998842022 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