coverity-scan #140
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 * * SAT' | |
permissions: | |
contents: read | |
jobs: | |
scan: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 1.8 | |
id: jdk-8 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 8 | |
distribution: 'zulu' | |
- name: Get coverity cli | |
run: | | |
wget https://scan.coverity.com/download/linux64 --no-verbose --post-data "token=${{ secrets.COVERITY_TOKEN }}&project=jeremylong%2FDependencyCheck" -O coverity_tool.tgz | |
mkdir coverity_tool | |
tar xzf coverity_tool.tgz --strip 1 -C coverity_tool | |
- name: Perform coverity scan | |
run: | | |
export PATH=`pwd`/coverity_tool/bin:$PATH | |
cov-build --dir cov-int mvn -DskipTests=true package --no-transfer-progress --batch-mode | |
- name: Submit coverity scan | |
run: | | |
tar czvf scan.tgz cov-int | |
curl --form token=${{ secrets.COVERITY_TOKEN }} \ | |
--form [email protected] \ | |
--form [email protected] \ | |
--form version="main" \ | |
--form description="Weekly Scan" \ | |
https://scan.coverity.com/builds?project=jeremylong%2FDependencyCheck |