blob: 39e4bb18662395ddc427d2b0391c1bcd54e2112c (
plain)
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
# Copyright (C) 2025 Sebastian Pipping <sebastian@pipping.org>
# Licensed under the MIT license
name: Run tests under coverage
on:
pull_request:
push:
schedule:
- cron: '0 2 * * 5' # Every Friday at 2am
workflow_dispatch:
permissions:
contents: read
jobs:
test_coverage:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Install Clang 21
run: |-
set -x
source /etc/os-release
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
sudo add-apt-repository "deb https://apt.llvm.org/${UBUNTU_CODENAME}/ llvm-toolchain-${UBUNTU_CODENAME}-21 main"
sudo apt-get update # due to new repository
sudo apt-get install --yes --no-install-recommends -V \
clang-21 \
libclang-rt-21-dev \
llvm-21
echo /usr/lib/llvm-21/bin >>"${GITHUB_PATH}"
- name: Install other build dependencies
run: |-
set -x
sudo apt-get install --yes --no-install-recommends -V \
libgtest-dev
- name: Build uriparser fuzzers
run: |
args=(
# Build nothing but the test suite
-DURIPARSER_BUILD_DOCS=OFF
-DURIPARSER_BUILD_TESTS=ON
-DURIPARSER_BUILD_TOOLS=OFF
-DURIPARSER_ENABLE_INSTALL=OFF
# Tune compilation to use Clang with code coverage
-DCMAKE_C_COMPILER=clang-21
-DCMAKE_CXX_COMPILER=clang++-21
-DCMAKE_{C,CXX}_FLAGS='-Wall -Wextra -pedantic -O2 -g -fprofile-instr-generate -fcoverage-mapping'
-DURIPARSER_WARNINGS_AS_ERRORS=ON
)
set -x -o pipefail
cmake "${args[@]}" -S . -B build
make -C build VERBOSE=1 -j$(nproc)
- name: Run tests under coverage
run: |
CTEST_OUTPUT_ON_FAILURE=1 make -C build all test
- name: Generate reports
run: |
set -x -o pipefail
mkdir coverage/
llvm-profdata merge -sparse build/default.profraw -o coverage/indexed.profraw
llvm-cov show -instr-profile=coverage/indexed.profraw -format=html -output-dir=coverage/html/ build/testrunner
llvm-cov report -instr-profile=coverage/indexed.profraw build/testrunner |& tee coverage/report.txt
- name: Store coverage report
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: uriparser_coverage_${{ github.sha }}
path: coverage/
if-no-files-found: error
|