Coverity Scan #238
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Coverity Scan | |
on: | |
schedule: | |
- cron: '0 0 * * 0' # once a week | |
jobs: | |
scan: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Dependency | |
run: | | |
sudo apt install \ | |
libacl1-dev \ | |
liblua5.3-dev \ | |
libncursesw5-dev \ | |
libselinux1-dev \ | |
libtermkey-dev \ | |
libtre-dev | |
- name: Download Coverity Build Tool | |
run: | | |
wget -q https://scan.coverity.com/download/cxx/linux64 --post-data "token=$TOKEN&project=martanne/vis" -O coverity_tool.tgz | |
wget -q https://scan.coverity.com/download/cxx/linux64 --post-data "token=$TOKEN&project=martanne/vis&md5=1" -O coverity_tool.md5 | |
if ! (cat coverity_tool.md5; echo " coverity_tool.tgz") | md5sum -c --status; then | |
echo "Download checksum verification failed" | |
exit 1 | |
fi | |
mkdir cov-analysis-linux64 | |
tar xzf coverity_tool.tgz --strip 1 -C cov-analysis-linux64 | |
env: | |
TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN }} | |
- name: Configure | |
run: ./configure | |
- name: Build with cov-build | |
run: | | |
export PATH=$(pwd)/cov-analysis-linux64/bin:$PATH | |
cov-build --dir cov-int make | |
- name: Submit the result to Coverity Scan | |
run: | | |
tar czvf vis.tgz cov-int | |
curl \ | |
--form project=martanne/vis \ | |
--form token=$TOKEN \ | |
--form [email protected] \ | |
--form [email protected] \ | |
--form version=trunk \ | |
--form description="`./vis -v`" \ | |
https://scan.coverity.com/builds?project=martanne/vis | |
env: | |
TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN }} |