Skip to content

Commit 74671e6

Browse files
authored
Merge pull request #42 from sir-gon/develop
[CONFIG] [lcov] "--ignore-errors empty" parameter added.
2 parents 49e194b + 43e787f commit 74671e6

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

.github/workflows/cpp-coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on: # yamllint disable-line rule:truthy
1313
jobs:
1414
coverage:
1515
name: C++ CMake CI Coverage
16-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-24.04
1717

1818
steps:
1919
- name: Checkout repository

.github/workflows/cpp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on: # yamllint disable-line rule:truthy
1313
jobs:
1414
build:
1515
name: C++ CMake CI Test
16-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-24.04
1717
strategy:
1818
matrix:
1919
os: [

.github/workflows/cppcheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on: # yamllint disable-line rule:truthy
1313
jobs:
1414
lint:
1515
name: CppCheck Lint
16-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-24.04
1717

1818
steps:
1919
- name: Checkout repository

.github/workflows/sonarcloud.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on: # yamllint disable-line rule:truthy
1111
jobs:
1212
build:
1313
name: SonarCloud build and run sonar-scanner
14-
runs-on: ubuntu-latest
14+
runs-on: ubuntu-24.04
1515
env:
1616
# Directory where build-wrapper output will be placed
1717
BUILD_WRAPPER_OUT_DIR: build_wrapper_output_directory
@@ -22,6 +22,7 @@ jobs:
2222
fetch-depth: 0
2323
- name: Install Tools
2424
run: |
25+
sudo rm /usr/lib/python3.*/EXTERNALLY-MANAGED
2526
sudo apt-get install lcov
2627
pip install gcovr
2728

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ BUILDKIT_PROGRESS=plain
2424
DOCKER_COMPOSE=docker compose
2525

2626
# TOOLS
27-
COVERAGE_TOOL_OPTS=--config-file .lcovrc
27+
COVERAGE_TOOL_OPTS=--config-file .lcovrc --ignore-errors empty
2828

2929
# C++ specific
3030
SRC_DIR = src

0 commit comments

Comments
 (0)