From aa34cc0489519de32dd9d656c4ce51f9743a3b9b Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Tue, 24 Mar 2020 13:11:31 +0100 Subject: travis: enable more archs during cron build Enable builds on ppc64le on our daily build. s390x will follow at some later point (once all quirks are resolved). As we also use the Linux native build from Travis for Codecov we start to handle meson options based on builds here as well. Reviewed-by: Marcel Hollerbach Differential Revision: https://phab.enlightenment.org/D11586 --- .ci/ci-configure.sh | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) (limited to '.ci') diff --git a/.ci/ci-configure.sh b/.ci/ci-configure.sh index cd7f9eb889..7eb59f7fbb 100755 --- a/.ci/ci-configure.sh +++ b/.ci/ci-configure.sh @@ -99,8 +99,18 @@ elif [ "$TRAVIS_OS_NAME" = "osx" ]; then travis_fold meson meson 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 travis_endfold meson -else - travis_fold meson meson - mkdir build && meson build -Decore-imf-loaders-disabler=scim,ibus -Db_coverage=true - travis_endfold meson +else # Native Ubuntu Linux Travis builds (non-docker) + OPTS=" -Decore-imf-loaders-disabler=scim,ibus" + + if [ "$TRAVIS_CPU_ARCH" = "ppc64le" ]; then + travis_fold meson meson + OPTS="$OPTS -Dbindings=" + travis_endfold meson + fi + if [ "$1" = "codecov" ]; then + travis_fold meson meson + OPTS="$OPTS -Db_coverage=true" + travis_endfold meson + fi + mkdir build && meson build $OPTS fi -- cgit v1.2.1