-
Notifications
You must be signed in to change notification settings - Fork 198
58 lines (48 loc) · 1.48 KB
/
ccpp.yml
File metadata and controls
58 lines (48 loc) · 1.48 KB
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
name: C/C++ CI
on: [push]
jobs:
build-ubuntu:
runs-on: ubuntu-latest
strategy:
matrix:
config: [Debug, Release]
standard: [11, 17]
steps:
- uses: actions/checkout@v1
- name: Build & Test
run: |
cmake -E remove_directory build
cmake -B build -S . -DCMAKE_BUILD_TYPE=${{ matrix.config }} -DCMAKE_CXX_STANDARD=${{ matrix.standard }} -DCMAKE_CXX_FLAGS="-Werror -fsanitize=address,undefined"
cmake --build build
cd build
ctest --output-on-failure
build-windows:
runs-on: windows-latest
strategy:
matrix:
config: [Debug, Release]
standard: [11, 17]
steps:
- uses: actions/checkout@v1
- name: Build & Test
run: |
cmake -E remove_directory build
cmake -B build -S . -DCMAKE_CXX_STANDARD=${{ matrix.standard }} # -DCMAKE_CXX_FLAGS="/WX"
cmake --build build --config ${{ matrix.config }}
cd build
ctest --output-on-failure
build-macos:
runs-on: macOS-latest
strategy:
matrix:
config: [Debug, Release]
standard: [11, 17]
steps:
- uses: actions/checkout@v1
- name: Build & Test
run: |
cmake -E remove_directory build
cmake -B build -S . -DCMAKE_BUILD_TYPE=${{ matrix.config }} -DCMAKE_CXX_STANDARD=${{ matrix.standard }} -DCMAKE_CXX_FLAGS="-Werror -fsanitize=address,undefined"
cmake --build build
cd build
ctest --output-on-failure