-
Notifications
You must be signed in to change notification settings - Fork 25
88 lines (65 loc) · 1.65 KB
/
c-cpp.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
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
name: C/C++ CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
include:
- os: ubuntu-latest
compiler: gcc
- os: macos-latest
compiler: clang
- os: windows-latest
compiler: msvc
runs-on: ${{ matrix.os }}
env:
CC: ${{ matrix.compiler }}
steps:
- uses: actions/checkout@v2
- name: Test
run: ./scripts/test-all.sh
test-tcc:
runs-on: ubuntu-latest
env:
CC: tcc
steps:
- uses: actions/checkout@v2
- name: Install TCC
run: sudo apt install tcc
- name: Test
run: ./scripts/test-all.sh
test-cxx-stmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Test C++ statement chaining
run: |
g++ tests/stmt.c -o stmt -Iinclude -Wall -Wextra -pedantic -std=c++11 -ftrack-macro-expansion=0
./stmt
bench:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Bench
run: ./scripts/bench.sh
check-arities:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Doxygen
run: sudo apt install doxygen
- name: Check arity specifiers
run: python3 scripts/check-arities.py
check-fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Download run-clang-format
run: git submodule update --init run-clang-format
- name: Check code formatting
run: ./scripts/check-fmt.sh