From 8c7dfd1925ce50638b813120c6e71d62191fe021 Mon Sep 17 00:00:00 2001 From: Marcel Hollerbach Date: Mon, 27 Jul 2020 13:49:20 +0200 Subject: [PATCH] ci: do not build tests on ci we need to do the same on any platform that upgrades check from 0.15.0 to 0.15.1. For now this is only with macos Differential Revision: https://phab.enlightenment.org/D12068 --- .ci/ci-configure.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/ci-configure.sh b/.ci/ci-configure.sh index 0b2f5a64c1..85aeb75202 100755 --- a/.ci/ci-configure.sh +++ b/.ci/ci-configure.sh @@ -96,7 +96,7 @@ elif [ "$TRAVIS_OS_NAME" = "osx" ]; then zlib_vers=$(grep ZLIB_VERSION /usr/include/zlib.h|head -n1|awk '{print $3}'|cut -d'"' -f2) sed -iE "s/REPLACE_THIS/$zlib_vers/" .ci/zlib.pc export PKG_CONFIG_PATH="/usr/local/opt/openssl/lib/pkgconfig:/usr/local/Cellar/libffi/$LIBFFI_VER/lib/pkgconfig:$(pwd)/.ci" - mkdir build && meson build -Dopengl=full -Decore-imf-loaders-disabler=scim,ibus -Dx11=false -Davahi=false -Deeze=false -Dsystemd=false -Dnls=false -Dcocoa=true -Dgstreamer=false + mkdir build && meson build -Dopengl=full -Decore-imf-loaders-disabler=scim,ibus -Dx11=false -Davahi=false -Deeze=false -Dsystemd=false -Dnls=false -Dcocoa=true -Dgstreamer=false -Dbuild-tests=false else # Native Ubuntu Linux Travis builds (non-docker) OPTS=" -Decore-imf-loaders-disabler=scim,ibus"