-
Notifications
You must be signed in to change notification settings - Fork 4
63 lines (49 loc) · 1.37 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
name: build+tests
on: [push, pull_request]
jobs:
linux:
runs-on: ubuntu-latest
container: archlinux:base-devel
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Build Dependencies
run: |
pacman --noconfirm -Syu
pacman --noconfirm -S cmake ninja boost git curl zip unzip tar
- name: Configure
run: cmake . -G Ninja -D RUN_COVERAGE:BOOL=ON
- name: Build
run: cmake --build . --config Debug
- name: Test
run: ctest -j6 -C Debug --output-on-failure
- name: Upload Coverage
uses: codecov/codecov-action@v3
with:
gcov: true
gcov_args: -r
# windows:
# runs-on: windows-latest
# steps:
# - name: Checkout
# uses: actions/checkout@v2
# - name: Configure
# run: cmake .
# - name: Build
# run: cmake --build . --config Release
# - name: Test
# run: ctest -j6 -C Release -T test --output-on-failure
# osx:
# runs-on: macos-latest
# steps:
# - name: Checkout
# uses: actions/checkout@v2
# - name: Configure
# env:
# CC: gcc-11
# CXX: g++-11
# run: cmake .
# - name: Build
# run: cmake --build . --config Release
# - name: Test
# run: ctest -j6 -C Release -T test --output-on-failure