Skip to content

Commit 59d1d4a

Browse files
committed
disable cache for FRIGATE_ROOT
Signed-off-by: Kareem Farid <[email protected]>
1 parent 7a808e5 commit 59d1d4a

File tree

1 file changed

+13
-12
lines changed

1 file changed

+13
-12
lines changed

.github/actions/setup-dependencies/action.yaml

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff 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' }}

0 commit comments

Comments
 (0)