Coverity Scan #3
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: workflow_dispatch | |
jobs: | |
coverity-scan: | |
runs-on: ubuntu-latest | |
environment: Coverity | |
steps: | |
- name: Checkout Mini-XML sources | |
uses: actions/checkout@v4 | |
- name: Update build environment | |
run: sudo apt-get update --fix-missing -y | |
- name: Download Coverity Build Tool | |
run: | | |
wget -q https://scan.coverity.com/download/linux64 --post-data token="$TOKEN&project=$GITHUB_REPOSITORY" -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: Configure Mini-XML | |
run: ./configure --enable-debug --enable-maintainer | |
- name: Build Mini-XML 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 cov.tgz cov-int | |
curl \ | |
--form token=$TOKEN \ | |
--form [email protected] \ | |
--form [email protected] \ | |
--form version="$GITHUB_REF" \ | |
--form description="$GITHUB_SHA" \ | |
"https://scan.coverity.com/builds?project=$GITHUB_REPOSITORY" | |
env: | |
TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN }} |