We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents adb15ee + 5e062b5 commit 6b1fff0Copy full SHA for 6b1fff0
1 file changed
.github/workflows/coverity-scan-fixes.yml
@@ -63,10 +63,17 @@ jobs:
63
env:
64
TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN_WOLFTPM }}
65
run: |
66
- curl https://scan.coverity.com/download/cxx/linux64 \
67
- --no-progress-meter \
+ curl -L --fail --no-progress-meter \
68
--output cov-analysis.tar.gz \
69
- --data "token=${TOKEN}&project=wolfTPM"
+ --data-urlencode "token=${TOKEN}" \
+ --data-urlencode "project=wolfTPM" \
70
+ https://scan.coverity.com/download/cxx/linux64
71
+ file cov-analysis.tar.gz
72
+ if ! gzip -t cov-analysis.tar.gz 2>/dev/null; then
73
+ echo "Downloaded file is not gzip — server response:"
74
+ head -c 2000 cov-analysis.tar.gz
75
+ exit 1
76
+ fi
77
mkdir -p cov-analysis
78
tar -xzf cov-analysis.tar.gz --strip 1 -C cov-analysis
79
0 commit comments