File tree Expand file tree Collapse file tree 1 file changed +13
-12
lines changed
.github/actions/setup-dependencies Expand file tree Collapse file tree 1 file changed +13
-12
lines changed Original file line number Diff line number Diff line change @@ -21,13 +21,13 @@ runs:
2121 echo "FRIGATE_BRANCH=$(make echo-var VAR=FRIGATE_BRANCH)" >> $GITHUB_ENV
2222 echo "MGMT_BRANCH=$(make echo-var VAR=MGMT_BRANCH)" >> $GITHUB_ENV
2323 echo "OPEN_PDKS_COMMIT=$(make echo-var VAR=OPEN_PDKS_COMMIT)" >> $GITHUB_ENV
24- - name : Cache FRIGATE
25- id : cache-FRIGATE
26- uses : actions/cache/restore@v4
27- with :
28- path : ${{env.FRIGATE_ROOT}}
29- key : FRIGATE-${{env.FRIGATE_BRANCH}}
30- enableCrossOsArchive : " true"
24+ # - name: Cache FRIGATE
25+ # id: cache-FRIGATE
26+ # uses: actions/cache/restore@v4
27+ # with:
28+ # path: ${{env.FRIGATE_ROOT}}
29+ # key: FRIGATE-${{env.FRIGATE_BRANCH}}
30+ # enableCrossOsArchive: "true"
3131 - name : Cache mgmt
3232 id : cache-mgmt
3333 uses : actions/cache/restore@v4
@@ -42,11 +42,12 @@ runs:
4242 path : ${{env.PDK_ROOT}}
4343 key : pdk-${{env.OPEN_PDKS_COMMIT}}
4444 enableCrossOsArchive : " true"
45- - name : Download FRIGATE
46- shell : bash
47- if : ${{ steps.cache-FRIGATE.outputs.cache-hit != 'true' && inputs.cache-only != 'true' }}
48- run : |
49- make install-frigate
45+ # - name: Download FRIGATE
46+ # shell: bash
47+ # if: ${{ steps.cache-FRIGATE.outputs.cache-hit != 'true' && inputs.cache-only != 'true' }}
48+ # run: |
49+ # rm -rf ${{ env.FRIGATE_ROOT }}
50+ # make install-frigate
5051 - name : Download mgmt
5152 shell : bash
5253 if : ${{ steps.cache-mgmt.outputs.cache-hit != 'true' && inputs.cache-only != 'true' }}
You can’t perform that action at this time.
0 commit comments