-
Notifications
You must be signed in to change notification settings - Fork 42
57 lines (56 loc) · 1.84 KB
/
coverity.yaml
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
# Adapted from https://github.com/ruby/actions-coverity-scan/
# Many thanks to the Ruby community
name: Coverity Scan
on:
schedule:
- cron: '0 5 * * MON'
workflow_dispatch: {}
jobs:
latest:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install \
cmake \
ninja-build \
g++ \
python3 \
gettext \
qtbase5-dev \
libqt5svg5-dev \
libkf5archive-dev \
liblua5.3-dev \
libsqlite3-dev \
libsdl2-mixer-dev
- name: Download Coverity Build Tool
run: |
wget -q https://scan.coverity.com/download/cxx/linux64 --post-data "token=${TOKEN}&project=longturn/freeciv21" -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
run: |
cmake . -B build -G Ninja -DCMAKE_INSTALL_PREFIX=$PWD/build/install
- 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 freeciv21.tgz cov-int
curl \
--form project=longturn/freeciv21 \
--form token=$TOKEN \
--form [email protected] \
--form [email protected] \
--form version=trunk \
--form description=Freeciv21 \
https://scan.coverity.com/builds?project=longturn/freeciv21
env:
TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN }}