-
Notifications
You must be signed in to change notification settings - Fork 782
62 lines (53 loc) · 1.53 KB
/
analyze-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
58
59
60
61
62
name: Coverity Scan
on:
push:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
analyze-coverity:
name: Analyze
if: github.repository == 'zealdocs/zeal'
runs-on: ubuntu-22.04
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Dependencies
run: |
sudo apt-get -y -qq update
sudo apt-get -y -qq --no-install-recommends install \
cmake \
extra-cmake-modules \
git \
libarchive-dev \
libgl1-mesa-dev \
libqt6opengl6-dev \
libsqlite3-dev \
libxcb-keysyms1-dev \
ninja-build \
qt6-base-private-dev \
qt6-webengine-dev \
qt6-webengine-dev-tools
- name: Configure
run: cmake -B build -G Ninja
- name: Retrieve Application Version
run: |
zeal_version=$(<build/zeal_version)
echo "Zeal Version: ${zeal_version}"
echo "ZEAL_VERSION=${zeal_version}" >> $GITHUB_ENV
- name: Coverity Scan
uses: vapier/coverity-scan-action@v1
with:
command: ninja -C build
version: ${{ env.ZEAL_VERSION }}
email: ${{ secrets.COVERITY_SCAN_EMAIL }}
token: ${{ secrets.COVERITY_SCAN_TOKEN }}
- name: Upload Build Log
uses: actions/upload-artifact@v3
with:
name: build-log
path: cov-int/build-log.txt
if-no-files-found: ignore