-
Notifications
You must be signed in to change notification settings - Fork 2
66 lines (64 loc) · 1.93 KB
/
main.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
name: cheriot-audit CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
build:
strategy:
matrix:
config:
- {
name: "Ubuntu Latest Release",
os: "ubuntu-latest",
build-type: Release,
dependencies: "sudo apt install ninja-build"
}
- {
name: "Ubuntu 20.04 Release",
os: "ubuntu-20.04",
build-type: Release,
dependencies: "sudo apt install ninja-build"
}
- {
name: "macOS Release",
os: "macos-latest",
build-type: Release,
dependencies: "brew update && brew install cmake ninja"
}
- {
name: "Ubuntu Latest Debug",
os: "ubuntu-latest",
build-type: Debug,
dependencies: "sudo apt install ninja-build"
}
- {
name: "Ubuntu 20.04 Debug",
os: "ubuntu-20.04",
build-type: Debug,
dependencies: "sudo apt install ninja-build"
}
- {
name: "macOS Debug",
os: "macos-latest",
build-type: Debug,
dependencies: "brew update && brew install cmake ninja"
}
runs-on: ${{ matrix.config.os }}
name: ${{ matrix.config.name }}
steps:
- uses: actions/checkout@v2
- name: Install ninja
run: ${{ matrix.config.dependencies }}
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{matrix.config.build-type}} -G Ninja
- name: Build
working-directory: ${{github.workspace}}/build
# Build your program with the given configuration
run: NINJA_STATUS="%p [%f:%s/%t] %o/s, %es" && ninja
- name: Test
working-directory: ${{github.workspace}}/build
# Build your program with the given configuration
run: ctest -j4 --output-on-failure