Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/cpp-coverage.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
---

name: C++ CI Coverage

on: # yamllint disable-line rule:truthy
Expand Down Expand Up @@ -39,9 +38,15 @@ jobs:

- name: Check Tools
run: |
echo "-----------"
c++ --version
echo "-----------"
make --version
echo "-----------"
cmake --version
echo "-----------"
vcpkg --version
echo "-----------"
lcov --version

- name: Install dependencies
Expand All @@ -54,7 +59,6 @@ jobs:
export VCPKG_ROOT=/usr/local/share/vcpkg
make build
# yamllint enable rule:line-length

- name: Test / Coverage
run: make coverage

Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/cpp-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ jobs:

- name: Check Tools
run: |
echo "-----------"
c++ --version
echo "-----------"
make --version
echo "-----------"
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/cpp-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ jobs:

- name: Check Tools
run: |
echo "-----------"
c++ --version
echo "-----------"
make --version
echo "-----------"
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/cpp-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ jobs:

- name: Check Tools
run: |
echo "-----------"
c++ --version
echo "-----------"
make --version
echo "-----------"
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/sonarcloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,17 @@ jobs:

- name: Check Tools
run: |
echo "-----------"
c++ --version
echo "-----------"
make --version
echo "-----------"
cmake --version
echo "-----------"
vcpkg --version
echo "-----------"
lcov --version
echo "-----------"
gcovr --version

- name: Install dependencies
Expand All @@ -55,7 +62,6 @@ jobs:
export VCPKG_ROOT=/usr/local/share/vcpkg
build-wrapper-linux-x86-64 --out-dir ${{ env.BUILD_WRAPPER_OUT_DIR }} make build
# yamllint enable rule:line-length

- name: Run tests to generate coverage statistics
run: |
make coverage
Expand Down