Merge branch 'js/github-ci-win-coverity-fix'

Fixes for GitHub Actions Coverity job.

* js/github-ci-win-coverity-fix:
  ci(coverity): output the build log upon error
  ci(coverity): fix building on Windows
This commit is contained in:
Junio C Hamano
2025-06-13 13:29:14 -07:00

View File

@@ -147,9 +147,13 @@ jobs:
key: cov-build-${{ env.COVERITY_LANGUAGE }}-${{ env.COVERITY_PLATFORM }}-${{ steps.lookup.outputs.hash }} key: cov-build-${{ env.COVERITY_LANGUAGE }}-${{ env.COVERITY_PLATFORM }}-${{ steps.lookup.outputs.hash }}
- name: build with cov-build - name: build with cov-build
run: | run: |
export PATH="$RUNNER_TEMP/cov-analysis/bin:$PATH" && export PATH="$PATH:$RUNNER_TEMP/cov-analysis/bin" &&
cov-configure --gcc && cov-configure --gcc &&
cov-build --dir cov-int make if ! cov-build --dir cov-int make
then
cat cov-int/build-log.txt
exit 1
fi
- name: package the build - name: package the build
run: tar -czvf cov-int.tgz cov-int run: tar -czvf cov-int.tgz cov-int
- name: submit the build to Coverity Scan - name: submit the build to Coverity Scan