-
-
Notifications
You must be signed in to change notification settings - Fork 4
55 lines (55 loc) · 1.27 KB
/
codecov.yaml
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
name: CodeCov
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
codecov:
name: CodeCov
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install tools
run: |
sudo apt update
sudo apt install --yes \
build-essential \
gcovr \
meson \
pkg-config \
libfuse-dev \
libfuse3-dev \
liblz4-dev \
liblzma-dev \
zlib1g-dev \
libzstd-dev \
squashfs-tools
- name: Configure
run: |
CC=gcc meson setup build \
-Db_coverage=true \
-Dwerror=true \
-Dexamples=true \
-Dzlib=enabled \
-Dlz4=enabled \
-Dlzma=enabled \
-Dzstd=enabled \
-Dthreads=enabled \
-Dfuse-old=enabled \
-Dtest=extended
- name: Build
run: |
meson compile -C build
- name: Test
run: |
MESON_TESTTHREADS=1 meson test -C build
- name: Generate Reports
run: |
ninja -C build coverage-xml
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}