-
Notifications
You must be signed in to change notification settings - Fork 13
63 lines (51 loc) · 1.67 KB
/
cov.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: Coverage
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
workflow_dispatch:
jobs:
build_and_test:
name: Analyze test coverage with XSIMD version ${{ matrix.xsimd_version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false # show all errors for each platform (vs. cancel jobs on error)
matrix:
xsimd_version: ["", "8.0.5"]
steps:
- name: Install Linux Deps
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt install lcov
lcov --version
- name: Get latest CMake
uses: lukka/get-cmake@latest
- name: Checkout code
uses: actions/checkout@v2
- name: Configure
shell: bash
run: cmake -Bbuild -DCHOWDSP_WDF_CODE_COVERAGE=ON -DCHOWDSP_WDF_TEST_WITH_XSIMD_VERSION="${{ matrix.xsimd_version }}"
- name: Build
shell: bash
run: cmake --build build --parallel 4 --target chowdsp_wdf_tests
- name: Test
shell: bash
run: ./build/test-binary/chowdsp_wdf_tests
- name: Collect Coverage Data
shell: bash
run: |
lcov --directory . --capture --output-file coverage.info
lcov --remove coverage.info '/usr/*' "${HOME}"'/.cache/*' '/Applications/Xcode*' '*tests*' --output-file coverage.info
- name: Report Coverage Data
shell: bash
run: lcov --list coverage.info
- name: Upload Coverage Data
shell: bash
run: bash <(curl -s https://codecov.io/bash) -f coverage.info || echo "Codecov did not collect coverage reports"
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}