-
Notifications
You must be signed in to change notification settings - Fork 40
117 lines (97 loc) · 3.23 KB
/
analyzers.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
name: Run static- and dynamic analyzers
on:
push:
branches: [master]
pull_request:
branches: [master]
workflow_dispatch:
jobs:
cppcheck:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: './.github/actions/build_core_dependencies'
with:
privileges: 'sudo'
- name: Install dependencies
run: |
sudo apt-get update
sudo DEBIAN_FRONTEND=noninteractive apt-get -y install cppcheck
- name: Build dlisio
run: |
cmake -S . -B build \
-DCMAKE_EXPORT_COMPILE_COMMANDS=ON \
-DBUILD_PYTHON=OFF \
-DBUILD_TESTING=OFF
- name: Run cppcheck
run: |
cppcheck \
--enable=style,portability,performance,warning \
--library=posix \
--suppressions-list=cppcheck/suppressions.txt \
--inline-suppr \
--project=build/compile_commands.json \
scan_build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: './.github/actions/build_core_dependencies'
with:
privileges: 'sudo'
- name: Install dependencies
run: |
sudo apt-get update
sudo DEBIAN_FRONTEND=noninteractive apt-get -y install clang clang-tools libfindbin-libs-perl
- name: Build dlisio
run: |
cmake -S . -B build \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_EXPORT_COMPILE_COMMANDS=ON \
-DBUILD_PYTHON=OFF \
-DBUILD_TESTING=OFF
- name: Run scan-build
run: |
sudo scan-build --status-bugs cmake \
--build build \
--target install
valgrind:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: './.github/actions/build_core_dependencies'
with:
privileges: 'sudo'
- name: Install dependencies
run: |
sudo apt-get update
sudo DEBIAN_FRONTEND=noninteractive apt-get -y install valgrind
- name: Build dlisio
run: |
cmake -S . -B build \
-DCMAKE_BUILD_TYPE=Release \
-DBUILD_SHARED_LIBS=ON \
-DBUILD_PYTHON=OFF
cmake --build build
- name: Run valgrind
run: |
valgrind --leak-check=full --show-leak-kinds=all --error-exitcode=1 build/lib/test-dlis
valgrind --leak-check=full --show-leak-kinds=all --error-exitcode=1 build/lib/test-lis
debug:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: './.github/actions/build_core_dependencies'
with:
privileges: 'sudo'
- name: Build dlisio
run: |
cmake -S . -B build \
-DCMAKE_BUILD_TYPE=Debug \
-DBUILD_SHARED_LIBS=ON \
-DBUILD_PYTHON=OFF
cmake --build build
- name: Test Core
shell: bash
run: |
cd build
ctest --output-on-failure