-
Notifications
You must be signed in to change notification settings - Fork 24
45 lines (39 loc) · 1.26 KB
/
coverity.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Coverity Scan
on:
schedule:
- cron: "0 0 * * *"
permissions:
contents: read
jobs:
scan:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- name: Download coverity scan build tool
run: |
curl -o cov-analysis-linux64.tar.gz https://scan.coverity.com/download/cxx/linux64 \
--form project=$GITHUB_REPOSITORY \
--form token=$TOKEN
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
run: ./configure
- name: Build with cov-build
run: |
export PATH=$(pwd)/cov-analysis-linux64/bin:$PATH
cov-build --dir cov-int make
- name: Submit result to coverity scan
run: |
tar czvf result.tgz cov-int
curl \
--form project=$GITHUB_REPOSITORY \
--form token=$TOKEN \
--form [email protected] \
--form [email protected] \
--form version=$(git rev-parse HEAD) \
--form description=$(date +%Y-%m-%dT%H:%M:%S%z) https://scan.coverity.com/builds?project=$GITHUB_REPOSITORY
env:
TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN }}