From: Tomas Mraz Date: Tue, 3 Oct 2023 06:39:31 +0000 (+0200) Subject: coveralls: Fix invocation of lcov X-Git-Tag: openssl-3.2.0-beta1~150 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=07829409b6fb40ce4f5c4ec633180280909c732b;p=thirdparty%2Fopenssl.git coveralls: Fix invocation of lcov Fixes recent regression from commit febe8cf4dee9939ee3e5523b6f14d9dc1ec74153 Reviewed-by: Paul Dale Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/22258) --- diff --git a/.github/workflows/coveralls.yml b/.github/workflows/coveralls.yml index 5330984c71c..e22c0099c02 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