summaryrefslogtreecommitdiff
path: root/.ci
diff options
context:
space:
mode:
authorStefan Schmidt <s.schmidt@samsung.com>2020-02-12 12:10:07 -0500
committerMike Blumenkrantz <zmike@samsung.com>2020-02-12 12:10:07 -0500
commit7c653df450b82275284a02459d435cf620972e4d (patch)
treec8ca4cfa77a6f458ace93a23b62c4a901409be0e /.ci
parentbf2b9adec5453019e74b5c6418573d171a837114 (diff)
downloadefl-7c653df450b82275284a02459d435cf620972e4d.tar.gz
ci: enable exactness build on travis
Summary: With exactness merged into efl we can finally enable some exactness testing on our CI. As a first step we will run around 47 tests from our elementary_tests recordings. The base data is already in the specific docker image to avoid downloading on each run. We also need to use a dedicated branch from the repo while we are still working out all the problems to make exactness recordings really independent from their env. Depends on D11317 Reviewers: zmike, bu5hm4n Reviewed By: zmike Subscribers: cedric, #reviewers, #committers Tags: #efl Differential Revision: https://phab.enlightenment.org/D11318
Diffstat (limited to '.ci')
-rwxr-xr-x.ci/ci-exactness.sh15
1 files changed, 15 insertions, 0 deletions
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