From 948dfe6e4b00364d97a1f8efb4bc75c09f75c4c3 Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Fri, 27 Mar 2020 09:54:43 +0100 Subject: [PATCH] ci: enable ecore_con IPv6 tests We have them behind an env variable as this is system specific. Enable them on CI to fully test these paths as well. While this works out of the box for the native build on Travis it fails for our docker builds, as the dockerd does not have ipv6 enabled by default. Only enable for Codecov for now. Reviewed-by: Mike Blumenkrantz Differential Revision: https://phab.enlightenment.org/D11608 --- .ci/ci-make-check.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.ci/ci-make-check.sh b/.ci/ci-make-check.sh index afbf74da35..002ca8c625 100755 --- a/.ci/ci-make-check.sh +++ b/.ci/ci-make-check.sh @@ -11,6 +11,7 @@ NUM_TRIES=5 if [ "$1" = "codecov" ] ; then for tries in $(seq 1 ${NUM_TRIES}); do + export EFL_TEST_ECORE_CON_IPV6=1 meson test -t 120 -C build --wrapper dbus-launch && break cat build/meson-logs/testlog-dbus-launch.txt if [ $tries != ${NUM_TRIES} ] ; then echo "tests failed, trying again!" ; fi