-
Notifications
You must be signed in to change notification settings - Fork 1
44 lines (38 loc) · 879 Bytes
/
ci.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
name: CI
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]
compiler: [gcc, clang]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
with:
submodules: true
- name: make
run: make CC=${{ matrix.compiler }}
- name: make test
run: make test CC=${{ matrix.compiler }}
- name: make test-asan
run: make test-asan CC=${{ matrix.compiler }}
coverage:
runs-on: ubuntu-latest
steps:
- name: Install lcov
run: sudo apt-get install lcov
- uses: actions/checkout@v1
with:
submodules: true
- name: make coverage
run: make coverage CC=gcc
- name: Upload coverage report
uses: actions/upload-artifact@v1
with:
name: Coverage
path: ./coverage