summaryrefslogtreecommitdiffstats
path: root/contrib/ci/run
diff options
context:
space:
mode:
authorNikolai Kondrashov <Nikolai.Kondrashov@redhat.com>2014-09-03 16:41:51 +0300
committerJakub Hrozek <jhrozek@redhat.com>2014-09-05 10:13:39 +0200
commit933c7c5efc76b4a9f3206b36bf6fe60e5dd635f1 (patch)
treeaad345cb737005b2d53f2b7d104f190f40191162 /contrib/ci/run
parentfe008197e415e10994e1fd96a9ff060be77ac6c4 (diff)
downloadsssd-933c7c5efc76b4a9f3206b36bf6fe60e5dd635f1.tar.gz
sssd-933c7c5efc76b4a9f3206b36bf6fe60e5dd635f1.tar.xz
sssd-933c7c5efc76b4a9f3206b36bf6fe60e5dd635f1.zip
CI: Consider libcmocka-devel always present
Add explicit dependency on libcmocka-devel when running on any Red Hat distros, as it turns out it exists everywhere, if only in EPEL distros, and even though the spec file doesn't require it. This makes the contrib/ci/run consider cmocka present on all the supported distros, so remove the corresponding condition as well. Reviewed-by: Michal Židek <mzidek@redhat.com>
Diffstat (limited to 'contrib/ci/run')
-rwxr-xr-xcontrib/ci/run10
1 files changed, 3 insertions, 7 deletions
diff --git a/contrib/ci/run b/contrib/ci/run
index b8a296aea..c62b63799 100755
--- a/contrib/ci/run
+++ b/contrib/ci/run
@@ -289,13 +289,9 @@ function build_coverage()
"coverage report:" \
"`disppath \"\$coverage_report_dir/index.html\"`"
- # If dependencies for all tests are satisfied
- # and so all the tests should have been built and ran.
- if "$DEPS_TESTS_SATISFIED"; then
- stage lcov-check eval 'lcov_check "$COVERAGE_MIN_LINES" \
- "$COVERAGE_MIN_FUNCS" \
- < ci-genhtml.out'
- fi
+ stage lcov-check eval 'lcov_check "$COVERAGE_MIN_LINES" \
+ "$COVERAGE_MIN_FUNCS" \
+ < ci-genhtml.out'
unset CFLAGS
}