]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
coveralls: Fix invocation of lcov
authorTomas Mraz <tomas@openssl.org>
Tue, 3 Oct 2023 06:39:31 +0000 (08:39 +0200)
committerTomas Mraz <tomas@openssl.org>
Tue, 3 Oct 2023 06:39:49 +0000 (08:39 +0200)
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)

.github/workflows/coveralls.yml

index 5330984c71c4d92500a91bf216dadbefc59f4d4a..e22c0099c024d1dca84274fe5f6a5b24ad5320e8 100644 (file)
@@ -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