-
Notifications
You must be signed in to change notification settings - Fork 0
61 lines (53 loc) · 1.26 KB
/
check.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
name: Precommit
on:
push:
branches:
- trunk
pull_request:
branches:
- trunk
jobs:
build:
strategy:
matrix:
compiler:
- gcc
- clang
optimization_level:
- -O0
- -O3
sanitizers:
- ''
- 'address,leak'
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt update
sudo apt install build-essential
sudo apt install gcc
sudo apt install clang clang-format clang-tidy
sudo apt install bear
- name: Build
run: |
if [[ -z "${{ matrix.sanitizers }}" ]]; then
SAN=""
else
SAN="-fsanitize=${{ matrix.sanitizers }}"
fi
bear -- make compile \
COMPILER=${{ matrix.compiler }} \
OPTIMIZATION_LEVEL=${{ matrix.optimization_level }}\
SANITIZERS="$SAN"
- name: Test
run: |
for i in {1..8}; do
echo "|- Running #$i..."
./build/bin/app
done
- name: Check Format
run: make check-format
- name: Check Style
run: make check-style