Add run-retry action to workaround integtest gcovr issue (#7507)

* Add `run-retry` composite action to workaround `integtest` `gcovr` issue

* Update ChangeLog

* Add comment explaining retry
This commit is contained in:
Nick Bolton
2024-09-12 10:20:53 +01:00
committed by GitHub
parent 3bb5ce12ae
commit f9287cddd1
3 changed files with 36 additions and 1 deletions

View File

@ -78,10 +78,13 @@ jobs:
QT_QPA_PLATFORM: offscreen
run: cmake --build build --target coverage-unittests
# Retry integtests coverae as gcovr intermittently fails to parse .gcda files.
- name: Integration tests coverage
env:
QT_QPA_PLATFORM: offscreen
run: cmake --build build --target coverage-integtests
uses: ./.github/actions/run-retry
with:
run: cmake --build build --target coverage-integtests
- name: Get coverage report paths
id: coverage-paths