-
Notifications
You must be signed in to change notification settings - Fork 4
75 lines (72 loc) · 2.65 KB
/
coverity-scan.yml
File metadata and controls
75 lines (72 loc) · 2.65 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
name: coverity-scan
on:
schedule:
- cron: "0 00 * * *" # Daily at 00:00 UTC
workflow_dispatch:
env:
TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN }}
EMAIL: ${{ secrets.COVERITY_SCAN_EMAIL }}
SHA1: ${{ github.sha }}
FILE: mdtools-ubuntu-gcc.tgz
PROJ: flamewing/mdtools
jobs:
coverity-linux:
if: ${{ github.repository_owner == 'flamewing' }}
runs-on: ubuntu-latest
steps:
- name: Activity check
run: |
DATEUTC=$(curl -sL https://api.github.com/repos/flamewing/mdtools/commits | jq -r '[.[]][0]' | jq -r '.commit.committer.date')
TIMESTAMP=$(date --utc -d "$DATEUTC" +%s)
DAYS=$(( ($(date --utc +%s) - $TIMESTAMP) / 86400 ))
if [ "${{ github.event_name }}" == "workflow_dispatch" ]; then
echo REPO_ALIVE=true >> $GITHUB_ENV
else
if [ $DAYS -gt 0 ]; then
echo REPO_ALIVE=false >> $GITHUB_ENV
else
echo REPO_ALIVE=true >> $GITHUB_ENV
fi
fi
- name: Set up GCC
if: ${{ env.REPO_ALIVE == 'true' }}
uses: egor-tensin/setup-gcc@v1
with:
version: 11
- name: Install dependencies
if: ${{ env.REPO_ALIVE == 'true' }}
run: |
sudo apt-fast update
sudo apt-fast install -y libboost-all-dev
- name: Download Coverity Build Tool
if: ${{ env.REPO_ALIVE == 'true' }}
run: |
wget -q https://scan.coverity.com/download/Linux --post-data "token=$TOKEN&project=$PROJ" -O /tmp/cov-analysis-linux64.tar.gz
mkdir /tmp/cov-analysis-linux64
tar xzf /tmp/cov-analysis-linux64.tar.gz --strip 1 -C /tmp/cov-analysis-linux64
- name: Checkout code
if: ${{ env.REPO_ALIVE == 'true' }}
uses: actions/checkout@master
- name: Configure
if: ${{ env.REPO_ALIVE == 'true' }}
run: |
export CC=gcc-11
export CXX=g++-11
cmake -S . -B build -G 'Unix Makefiles'
- name: Build with cov-build
if: ${{ env.REPO_ALIVE == 'true' }}
run: |
export PATH=/tmp/cov-analysis-linux64/bin:$PATH
cov-build --dir cov-int cmake --build build -j2
- name: Submit the result to Coverity Scan
if: ${{ env.REPO_ALIVE == 'true' }}
run: |
tar czvf $FILE cov-int
curl \
--form project=$PROJ \
--form token=$TOKEN \
--form email=$EMAIL \
--form file=@$FILE \
--form version=master \
--form description="$SHA1" \
https://scan.coverity.com/builds?project=$PROJ