summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2023-10-03 08:39:31 +0200
committerTomas Mraz <tomas@openssl.org>2023-10-03 08:39:49 +0200
commit07829409b6fb40ce4f5c4ec633180280909c732b (patch)
treef20ee237251d00243a7813372eb5332043bc8eb4
parentf7e7bbcd7850b96d02dd0f4dd49b3365b320776c (diff)
coveralls: Fix invocation of lcov
Fixes recent regression from commit febe8cf4dee9939ee3e5523b6f14d9dc1ec74153 Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/22258)
-rw-r--r--.github/workflows/coveralls.yml12
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/coveralls.yml b/.github/workflows/coveralls.yml
index 5330984c71..e22c0099c0 100644
--- a/.github/workflows/coveralls.yml
+++ b/.github/workflows/coveralls.yml
@@ -64,12 +64,12 @@ jobs:
- name: make test
run: make test HARNESS_JOBS=${HARNESS_JOBS:-4} TESTS='-test_external_krb5'
- name: generate coverage info
- run: lcov -d . -c \
- --exclude "${PWD}/test/*" \
- --exclude "${PWD}/test/helpers/*" \
- --exclude "${PWD}/test/testutil/*" \
- --exclude "${PWD}/fuzz/*" \
- --exclude "/usr/include/*" \
+ run: lcov -d . -c
+ --exclude "${PWD}/test/*"
+ --exclude "${PWD}/test/helpers/*"
+ --exclude "${PWD}/test/testutil/*"
+ --exclude "${PWD}/fuzz/*"
+ --exclude "/usr/include/*"
-o ./lcov.info
- name: Coveralls upload
uses: coverallsapp/github-action@v2.2.3