summaryrefslogtreecommitdiff
path: root/.ci/ci-make-benchmark.sh
diff options
context:
space:
mode:
authorStefan Schmidt <s.schmidt@samsung.com>2019-06-25 12:11:33 -0400
committerMike Blumenkrantz <zmike@samsung.com>2019-06-25 12:11:33 -0400
commit4f0989f2904c20ad2768b8244190b82b701c0564 (patch)
tree214791646acc23c2c0b87452882d155a1351ada6 /.ci/ci-make-benchmark.sh
parent8103b5687479385b3b2ba0fe5eddb9e6ce6b50c4 (diff)
downloadefl-4f0989f2904c20ad2768b8244190b82b701c0564.tar.gz
ci: travis: add coverity build job to be run from cron
Summary: We finally have regular Coverity Scan runs back to our CI. It gets triggered from the cron jobs on Travis. As we are not able to identify if it comes from a daily or weekly cron build I added a check to only run the scan build on a Saturday so we should have a nice and fresh report on Monday morning in our mailboxes. Reviewers: zmike, bu5hm4n Reviewed By: zmike Subscribers: cedric, #reviewers, #committers Tags: #efl Differential Revision: https://phab.enlightenment.org/D9175
Diffstat (limited to '.ci/ci-make-benchmark.sh')
-rwxr-xr-x.ci/ci-make-benchmark.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/.ci/ci-make-benchmark.sh b/.ci/ci-make-benchmark.sh
index d1689a2844..1fe0f9796f 100755
--- a/.ci/ci-make-benchmark.sh
+++ b/.ci/ci-make-benchmark.sh
@@ -5,6 +5,9 @@ set -e
if [ "$1" = "release-ready" ] ; then
exit 0
fi
+if [ "$1" = "coverity" ] ; then
+ exit 0
+fi
travis_fold benchmark "ninja benchmark"
echo "Nothing to do here, the benchmarks don't seem to terminate"
#else