-
Notifications
You must be signed in to change notification settings - Fork 22
57 lines (53 loc) · 1.76 KB
/
ci-workflow.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
name: Compilation & tests
on:
workflow_dispatch:
push:
branches:
- master
- develop
pull_request:
jobs:
unittesting:
name: C unit testing
runs-on: ubuntu-latest
steps:
- name: Clone
uses: actions/checkout@v4
- name: Install cmocka
run: |
sudo apt update
sudo apt install libcmocka-dev lcov libbsd-dev
- name: Compile the tests
run: |
cd tests/unit/
rm -rf build/
cmake -B build -H.
make -C build
- name: Run the tests
run: |
cd tests/unit/
CTEST_OUTPUT_ON_FAILURE=1 make -C build test
- name: Generate code coverage
run: |
cd tests/unit/
lcov --directory . -b "$(realpath build/)" --capture --initial -o coverage.base
lcov --rc lcov_branch_coverage=1 --directory . -b "$(realpath build/)" --capture -o coverage.capture
lcov --directory . -b "$(realpath build/)" --add-tracefile coverage.base --add-tracefile coverage.capture -o coverage.info
lcov --directory . -b "$(realpath build/)" --remove coverage.info '*/unit-tests/*' -o coverage.info
genhtml coverage.info -o coverage
- uses: actions/upload-artifact@v4
with:
name: code-coverage
path: tests/unit/coverage
build:
name: Build application using the reusable workflow
uses: LedgerHQ/ledger-app-workflows/.github/workflows/reusable_build.yml@v1
with:
flags: "TESTING=1 POPULATE=1"
upload_app_binaries_artifact: apps
test:
name: Test the application using the reusable workflow
uses: LedgerHQ/ledger-app-workflows/.github/workflows/reusable_ragger_tests.yml@v1
needs: build
with:
download_app_binaries_artifact: apps