-
Notifications
You must be signed in to change notification settings - Fork 0
63 lines (52 loc) · 1.73 KB
/
cmake.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
57
58
59
60
61
62
63
name: CMake
on:
push:
branches: [trunk]
pull_request:
branches: [trunk]
jobs:
build:
strategy:
matrix:
cmake_build_type: [Asan, Release]
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: |
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
sudo add-apt-repository "deb http://apt.llvm.org/noble/ llvm-toolchain-noble-18 main"
sudo apt update
sudo apt install build-essential
sudo apt install clang-format-18 clang-tidy-18
sudo ln -s $(which clang-format-18) /usr/local/bin/clang-format
sudo ln -s $(which clang-tidy-18) /usr/local/bin/clang-tidy
- name: Setup ccache
uses: hendrikmuhs/[email protected]
with:
create-symlink: true
key: ${{ github.job }}-${{ matrix.cmake_build_type }}
- name: Clang-Format
run: |
find source test -iname '*.hpp' -o -iname '*.cpp' \
| xargs clang-format -Werror --dry-run --fallback-style=Google --verbose
- name: Configure
run: |
mkdir -p build
cd build
cmake \
-DBST_DEVELOPER=ON \
-DCMAKE_BUILD_TYPE=${{ matrix.cmake_build_type }} \
..
- name: Build
working-directory: ${{github.workspace}}/build
run: make
- name: Unit Test
working-directory: ${{github.workspace}}/build
run: ./test/bst-test
- name: Clang-Tidy on sources
if: matrix.cmake_build_type == 'Release'
run: |
find source -iname '*.hpp' -o -iname '*.cpp' \
| xargs clang-tidy -p build/compile_commands.json