diff options
author | Dylan Baker <[email protected]> | 2017-10-04 11:38:04 -0700 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2017-10-09 13:54:46 -0700 |
commit | 68c91264ebb0e5d5647e3dfe01ce1765336c9246 (patch) | |
tree | 1354d5d70ebe96435d4b5d64796836bda4474f43 /.travis.yml | |
parent | c2cd5801cd1f05f8833a4c1c097b07757f763794 (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 <[email protected]>
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 19fd6acf3b9..2998842022a 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 |