ci: enable benchmark target again

It only runs after efl is installed and we need to ensure running with
Elm buffer engine in our docker build for the graphical collection
benchmark.

Signed-off-by: Stefan Schmidt <s.schmidt@samsung.com>
Reviewed-by: Marcel Hollerbach <mail@marcel-hollerbach.de>
Differential Revision: https://phab.enlightenment.org/D10848
This commit is contained in:
Stefan Schmidt 2019-11-15 09:29:24 +01:00 committed by Marcel Hollerbach
parent 2bd801f859
commit 9fb1ae0d3c
2 changed files with 9 additions and 18 deletions

View File

@ -2,20 +2,14 @@
set -e set -e
. .ci/travis.sh . .ci/travis.sh
if [ "$1" = "release-ready" ] ; then if [ "$1" != "default" ] ; then
exit 0
fi
if [ "$1" = "coverity" ] ; then
exit 0 exit 0
fi fi
travis_fold benchmark "ninja benchmark" travis_fold benchmark "ninja benchmark"
echo "Nothing to do here, the benchmarks don't seem to terminate" if [ "$DISTRO" != "" ] ; then
#else docker exec --env EIO_MONITOR_POLL=1 --env ELM_ENGINE=buffer $(cat $HOME/cid) ninja benchmark -C build
#if [ "$DISTRO" != "" ] ; then else
#docker exec --env EIO_MONITOR_POLL=1 $(cat $HOME/cid) make benchmark export PATH="/usr/local/opt/ccache/libexec:$(brew --prefix gettext)/bin:$PATH"
#else ninja benchmark -C build
#export PATH="/usr/local/opt/ccache/libexec:$(brew --prefix gettext)/bin:$PATH" fi
#make benchmark
#fi
#fi
travis_endfold benchmark travis_endfold benchmark

View File

@ -103,15 +103,12 @@ script:
- .ci/ci-configure.sh "$CI_BUILD_TYPE" - .ci/ci-configure.sh "$CI_BUILD_TYPE"
- .ci/ci-setup-ccache.sh "$CI_BUILD_TYPE" - .ci/ci-setup-ccache.sh "$CI_BUILD_TYPE"
- .ci/ci-make.sh "$CI_BUILD_TYPE" - .ci/ci-make.sh "$CI_BUILD_TYPE"
- |
if [[ "$TRAVIS_OS_NAME" == "linux" ]] && [[ "$CI_BUILD_TYPE" == "" ]]; then
.ci/ci-make-benchmark.sh "$CI_BUILD_TYPE"
fi
- .ci/ci-make-install.sh "$CI_BUILD_TYPE" - .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-make-check.sh "$CI_BUILD_TYPE"
- .ci/ci-make-distcheck.sh "$CI_BUILD_TYPE" - .ci/ci-make-distcheck.sh "$CI_BUILD_TYPE"
- |
- .ci/ci-build-test.sh "$CI_BUILD_TYPE" - .ci/ci-build-test.sh "$CI_BUILD_TYPE"
before_cache: before_cache:
- .ci/ci-ccache-stats.sh - .ci/ci-ccache-stats.sh
- | - |