Skip to content

Commit a6addb0

Browse files
committed
Load test caches too.
1 parent d73afbf commit a6addb0

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/actions/load_conan2/action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ runs:
4747
fail-on-cache-miss: ${{ inputs.fail_on_cache_miss }}
4848

4949
- name: Restore Testing Cache
50+
id: restore-test-cache
5051
uses: actions/cache/restore@v4
5152
with:
5253
path: |
@@ -59,5 +60,5 @@ runs:
5960
shell: bash
6061
run: |
6162
conan cache restore ~/conan_cache_save.tgz
62-
if: ${{ ((steps.restore-cache.outputs.cache-hit == 'true') || ( inputs.load_any == 'True' ))}}
63+
if: ${{ ((steps.restore-cache.outputs.cache-hit == 'true') || (steps.restore-test-cache.outputs.cache-hit == 'true'))}}
6364

gcovr.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ high-threshold = 80
22
medium-threshold = 65
33

44
merge-lines = yes
5+
exclude-unreachable-branches = yes
56

67
exclude = .*build.*
78
exclude = .*flip.*

0 commit comments

Comments
 (0)