-
Notifications
You must be signed in to change notification settings - Fork 4
56 lines (49 loc) · 1.33 KB
/
cpp-core.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
46
47
48
49
50
51
52
53
54
55
56
---
name: CPP CI VMICore
on:
push:
branches:
- "main"
paths:
- 'vmicore/**.h'
- 'vmicore/**.cpp'
- 'vmicore/**/CMakeLists.txt'
- 'vmicore/CMakePresets.json'
- 'vmicore/.clang-tidy'
- 'vmicore/.clang-format'
- 'vmicore/sonar-project.properties'
pull_request:
branches:
- "main"
paths:
- 'vmicore/**.h'
- 'vmicore/**.cpp'
- 'vmicore/**/CMakeLists.txt'
- 'vmicore/CMakePresets.json'
- 'vmicore/.clang-tidy'
- 'vmicore/.clang-format'
- 'vmicore/sonar-project.properties'
jobs:
format:
runs-on: ubuntu-latest
container:
image: gdatacyberdefense/clang-format:16
steps:
- uses: actions/checkout@v3
- name: Perform C++ format check
run: find vmicore/ -iname *.h -o -iname *.cpp | xargs clang-format --style=file --dry-run --Werror
build_core:
runs-on: ubuntu-latest
container:
image: ghcr.io/gdatasoftwareag/vmi-build
strategy:
matrix:
compiler: [clang, gcc]
steps:
- uses: actions/checkout@v3
- name: Build and test vmicore
run: |
cmake --preset ${{ matrix.compiler }}-debug
cmake --build --preset ${{ matrix.compiler }}-build-debug
ctest --preset ${{ matrix.compiler }}-test
working-directory: vmicore