diff --git a/.ci/ci-exactness.sh b/.ci/ci-exactness.sh new file mode 100755 index 0000000000..6371de3fc9 --- /dev/null +++ b/.ci/ci-exactness.sh @@ -0,0 +1,15 @@ +#!/bin/sh + +set -e +. .ci/travis.sh + +if [ "$1" != "exactness" ] ; then + exit 0 +fi + +travis_fold exactness "exactness" +if [ "$DISTRO" != "" ] ; then + docker exec --env EIO_MONITOR_POLL=1 $(cat $HOME/cid) sh -c 'git -C /exactness-elm-data pull' + docker exec --env EIO_MONITOR_POLL=1 --env LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib:/usr/local/lib64 --env EINA_LOG_LEVELS_GLOB=eina_*:0,ecore*:0,efreet*:0,eldbus:0,elementary:0 $(cat $HOME/cid) exactness -j 20 -b /exactness-elm-data/default-profile -p /exactness-elm-data/default-profile/ci-integration-tests.txt +fi +travis_endfold exactness diff --git a/.travis.yml b/.travis.yml index 89a213ad22..7e7aa2316a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -74,6 +74,9 @@ jobs: - os: linux if: type = cron env: DISTRO=Fedora31 CI_BUILD_TYPE=asan + - os: linux + if: type = cron + env: DISTRO=Fedora31-exactness CI_BUILD_TYPE=exactness - os: linux if: type = cron env: CI_BUILD_TYPE=codecov @@ -114,6 +117,7 @@ script: - .ci/ci-make-install.sh "$CI_BUILD_TYPE" - .ci/ci-make-benchmark.sh "$CI_BUILD_TYPE" - .ci/ci-make-check.sh "$CI_BUILD_TYPE" + - .ci/ci-exactness.sh "$CI_BUILD_TYPE" - .ci/ci-make-distcheck.sh "$CI_BUILD_TYPE" - .ci/ci-build-test.sh "$CI_BUILD_TYPE"