diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2021-12-24 12:22:59 +0100 |
---|---|---|
committer | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2021-12-24 12:22:59 +0100 |
commit | 179564eb4c2d5ee59ef129edab39ca1a7cbc4258 (patch) | |
tree | 89a385b9bb2053aa7b86a5ee72d23641a477ca93 | |
parent | e4a9132ab5c684be9743823df7c31d12da1e3f3b (diff) | |
download | libquotient-179564eb4c2d5ee59ef129edab39ca1a7cbc4258.tar.gz libquotient-179564eb4c2d5ee59ef129edab39ca1a7cbc4258.zip |
CI: Move a comment outside of the script
Comments inside shell scripts apparently break the flimsy GHA machinery.
-rw-r--r-- | .github/workflows/ci.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 72deb803..5cac5874 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -215,12 +215,13 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} + # Coverage of the test source code is not tracked, as it is obviously 100% + # (if it's not, some tests failed and break the build at an earlier stage) run: | mkdir .coverage && pushd .coverage find $BUILD_PATH -name '*.gcda' -print0 \ | xargs -0 $COV -s $GITHUB_WORKSPACE -pr popd - # Drop coverage of the test source code, which is obviously 100% rm -f quotest* autotests* $HOME/.sonar/sonar-scanner*/bin/sonar-scanner \ -Dsonar.host.url="$SONAR_SERVER_URL" \ |