Skip to content

Commit

Permalink
change parameter specification
Browse files Browse the repository at this point in the history
  • Loading branch information
kinkie committed Dec 7, 2024
1 parent e189c79 commit 46173c6
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/slow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -202,11 +202,16 @@ jobs:

- name: Coverity Full Scan
if: ${{ env.coverity_user }} && ${{ env.coverity_token }}
env:
coverity_token: ${{ secrets.COVERITY_PASSPHRASE }}
coverity_user: ${{ secrets.COVERITY_USER }}

run: |
cov-build --dir cov-int ./test-builds.sh layer-02-maximus
tar cfz cov-int.tar.gz cov-int
curl --form project=Squid \
--form [email protected] \
--form token="${coverity_token}" \
--form email="${coverity_user}" \
https://scan.coverity.com/builds
tar caf cov-int.tar.xz cov-int
curl \
--form email=${coverity_user} \
--form token=${coverity_token} \
--form version=coverity_scan \
--form [email protected] \
https://scan.coverity.com/builds?project=Squid

0 comments on commit 46173c6

Please sign in to comment.