Skip to content

Commit

Permalink
Switch to vapier/coverity-scan-action, don't use custom Docker image
Browse files Browse the repository at this point in the history
The Coverity Scan client shipped with the Docker image we used is
no longer supported
  • Loading branch information
Jalle19 committed Aug 27, 2024
1 parent 72b6ac0 commit 4aaf9c7
Showing 1 changed file with 5 additions and 20 deletions.
25 changes: 5 additions & 20 deletions .github/workflows/coverity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,25 +9,10 @@ on:
jobs:
build:
runs-on: ubuntu-latest
container: catalinii/minisatip-build-image:latest

steps:
- uses: actions/checkout@v4
- name: configure
run: ./configure
- name: Coverity Scan
run: |
make clean
/cov-analysis-linux64/bin/cov-build --dir cov-int make
tar czvf MINISATIP.tgz cov-int
curl \
--form project=$PROJECT \
--form token=$(cat /etc/coverity) \
--form email='reply+AB6SAEPNLEJSCE2WJ37GDNF6TC2NXEVBNHHDIEHQTY@reply.github.com' \
--form [email protected] \
--form version=trunk \
--form description="`git log -1 --pretty=format:%h`" \
https://scan.coverity.com/builds?project=$PROJECT
env:
TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN }}
PROJECT: minisatip2
- uses: vapier/coverity-scan-action@v1
with:
project: minisatip2
token: ${{ secrets.COVERITY_SCAN_TOKEN }}
email: reply+AB6SAEPNLEJSCE2WJ37GDNF6TC2NXEVBNHHDIEHQTY@reply.github.com

0 comments on commit 4aaf9c7

Please sign in to comment.