Skip to content
This repository was archived by the owner on Jul 22, 2026. It is now read-only.

Commit 8e5b953

Browse files
authored
Update ci.yml
1 parent ce2b1fd commit 8e5b953

1 file changed

Lines changed: 12 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,6 +354,17 @@ jobs:
354354
cd app/Converters
355355
python download_imagenet.py
356356
cd ../..
357+
- name: Debug cache info
358+
run: |
359+
echo "Cache hit: ${{ steps.cache-imagenet.outputs.cache-hit }}"
360+
echo "Cache key: ${{ steps.cache-imagenet.outputs.cache-primary-key }}"
361+
echo "Dataset size:"
362+
du -sh docs/ImageNet
363+
- name: Save ImageNet-Paste dataset
364+
uses: actions/cache/save@v4
365+
with:
366+
path: docs/ImageNet
367+
key: imagenet-paste-v1-${{ hashFiles('app/Converters/download_imagenet.py') }}
357368

358369
evaluate-models-onnx:
359370
runs-on: ubuntu-latest
@@ -448,7 +459,7 @@ jobs:
448459
449460
- name: Restore ImageNet-Paste dataset
450461
id: cache-imagenet
451-
uses: actions/cache/restore@v4
462+
uses: actions/cache@v4
452463
with:
453464
path: docs/ImageNet
454465
key: imagenet-paste-v1-${{ hashFiles('app/Converters/download_imagenet.py') }}

0 commit comments

Comments
 (0)