summaryrefslogtreecommitdiff
path: root/.ci
diff options
context:
space:
mode:
authorStefan Schmidt <s.schmidt@samsung.com>2020-03-27 09:54:43 +0100
committerStefan Schmidt <s.schmidt@samsung.com>2020-03-27 15:46:01 +0100
commit948dfe6e4b00364d97a1f8efb4bc75c09f75c4c3 (patch)
treeac7a3b307b104b25daa52c5ec7f389f792aed453 /.ci
parent191171e4c81c1832e9f7b3821c535d8a2b49eb14 (diff)
downloadefl-948dfe6e4b00364d97a1f8efb4bc75c09f75c4c3.tar.gz
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 <michael.blumenkrantz@gmail.com> Differential Revision: https://phab.enlightenment.org/D11608
Diffstat (limited to '.ci')
-rwxr-xr-x.ci/ci-make-check.sh1
1 files changed, 1 insertions, 0 deletions
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