test: invalidate test caches on compiletime change

master
Sean McBride 4 years ago
parent 0c79c9496b
commit e39b223c95

@ -101,7 +101,7 @@ jobs:
uses: actions/cache@v2 uses: actions/cache@v2
with: with:
path: ./runtime/bin/gocr_wasm.so path: ./runtime/bin/gocr_wasm.so
key: ${{ runner.os }}-gocr2-${{ hashFiles('./runtime/tests/gocr') }} key: ${{ runner.os }}-gocr2-${{ hashFiles('./runtime/tests/gocr/**', './runtime/compiletime/**') }}
if: success() || failure() if: success() || failure()
- name: Hyde - name: Hyde
run: | run: |
@ -138,7 +138,7 @@ jobs:
uses: actions/cache@v2 uses: actions/cache@v2
with: with:
path: ./runtime/bin/ekf_wasm.so path: ./runtime/bin/ekf_wasm.so
key: ${{ runner.os }}-gocr2-${{ hashFiles('./runtime/tests/TinyEKF') }} key: ${{ runner.os }}-gocr2-${{ hashFiles('./runtime/tests/TinyEKF/**', './runtime/compiletime/**') }}
if: success() || failure() if: success() || failure()
- name: EKF one iteration - name: EKF one iteration
run: | run: |

Loading…
Cancel
Save