Skip to content

Commit

Permalink
Add coverity scan
Browse files Browse the repository at this point in the history
  • Loading branch information
radare committed Mar 18, 2024
1 parent ba40047 commit 9ff3cf2
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/coverity-scan.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: Coverity Scan
on:
push:
branches:
- master

jobs:
latest:
runs-on: ubuntu-20.04
steps:
- name: Determine current repository
run: echo "{repo}={${GITHUB_REPOSITORY}}" >> $GITHUB_OUTPUT
- uses: actions/checkout@v3
- name: Download Coverity Build Tool
run: |
wget -q https://scan.coverity.com/download/cxx/linux64 --post-data "token=$TOKEN&project=sdb" -O cov-analysis-linux64.tar.gz
mkdir cov-analysis-linux64
tar xzf cov-analysis-linux64.tar.gz --strip 1 -C cov-analysis-linux64
env:
TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN }}

- name: Fixed world writable dirs
run: |
chmod go-w $HOME
sudo chmod -R go-w /usr/share
- name: Configure
run: ./configure

- name: Build with cov-build
run: |
export PATH=`pwd`/cov-analysis-linux64/bin:$PATH
cov-build --dir cov-int make
# TODO: Make it GitHub Action instead
- name: Submit the result to Coverity Scan
run: |
tar czvf sdb.tgz cov-int
curl \
--form project=sdb \
--form token=$TOKEN \
--form [email protected] \
--form [email protected] \
--form version=trunk \
--form description="sdb" \
https://scan.coverity.com/builds?project=sdb
env:
TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN }}

0 comments on commit 9ff3cf2

Please sign in to comment.