Skip to content

Commit

Permalink
Tools: add script for local Coverity builds.
Browse files Browse the repository at this point in the history
  • Loading branch information
SolidWallOfCode committed Jun 12, 2023
1 parent 3e9b9a8 commit f2c791e
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions tools/coverity.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
BASE=/tmp/libswoc
COV="/home/amc/opt/coverity/cov-analysis-linux64-2022.12.2/bin"

rm -rf ${BASE}
cd /tmp
git clone [email protected]:solidwallofcode/libswoc
cd libswoc
cmake . -B build
PATH="$COV:$PATH" $COV/cov-build --dir cov-int cmake --build build --target libswoc
tar czvf /tmp/libswoc.tgz cov-int

0 comments on commit f2c791e

Please sign in to comment.