Skip to content

Commit bec4592

Browse files
authored
Update testing.yml
oops, trying to force it to build without the cache while a cache existed, made it try to build without a cache with files carried over from the cache, bad. Manually deleting the cache made it go back to standard behavior, meaning it tried to run both without and with cacheing function paths. reverting back to standard cache function triggering, with manually deleted cache. for issue #556
1 parent 7eee1ca commit bec4592

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

.github/workflows/testing.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
restore-keys: ${{ runner.os }}-windDep
2828

2929
- name: build dependencies -- no cache
30-
#if: steps.cacheDep.outputs.cache-hit != 'true'
30+
if: steps.cacheDep.outputs.cache-hit != 'true'
3131
run: |
3232
sudo -E apt-get update -y
3333
sudo -E apt-get upgrade -y
@@ -37,8 +37,7 @@ jobs:
3737
cd ${{github.workspace}}
3838
3939
- name: build dependencies -- with cache
40-
#if: steps.cacheDep.outputs.cache-hit == 'true'
41-
if: steps.cacheDep.outputs.cache-hit != 'true'
40+
if: steps.cacheDep.outputs.cache-hit == 'true'
4241
run: |
4342
# install standard dependencies
4443
sudo -E apt-get update -y

0 commit comments

Comments
 (0)