forked from capstone-engine/capstone
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
55 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
name: Coverity Scan | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '0 0 01 * *' # On the 1st every month at midnight UTC | ||
|
||
|
||
# Automatically cancel any previous workflow on new push. | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
latest: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Determine current repository | ||
id: "determine-repo" | ||
run: echo "repo=${GITHUB_REPOSITORY}" >> $GITHUB_OUTPUT | ||
|
||
- uses: actions/checkout@v4 | ||
- name: Download Coverity Build Tool | ||
run: | | ||
wget -q https://scan.coverity.com/download/cxx/linux64 --post-data "token=$TOKEN&project=capstone-next" -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_TOKEN }} | ||
|
||
- name: Installing build dependencies | ||
run: | | ||
sudo apt-get --assume-yes install cmake | ||
- name: Setup | ||
run: | | ||
cmake . -B build -DCAPSTONE_BUILD_CSTEST=ON | ||
- name: Build with cov-build | ||
run: | | ||
export PATH=`pwd`/cov-analysis-linux64/bin:$PATH | ||
cov-build --dir cov-int cmake --build build | ||
- name: Submit the result to Coverity Scan | ||
run: | | ||
tar czvf capstone-next.tgz cov-int | ||
curl \ | ||
--form token=$TOKEN \ | ||
--form [email protected] \ | ||
--form [email protected] \ | ||
--form version=trunk \ | ||
--form description="capstone-next" \ | ||
https://scan.coverity.com/builds?project=capstone-next | ||
env: | ||
TOKEN: ${{ secrets.COVERITY_TOKEN }} | ||
if: steps.determine-repo.outputs.repo == 'capstone-engine/capstone' |