From 9dc33db108f59795e1ef730f3eccf1dd007b4f77 Mon Sep 17 00:00:00 2001 From: Robert Sachunsky Date: Tue, 1 Apr 2025 11:36:56 +0200 Subject: [PATCH] CI: add binarization models to cache --- .github/workflows/test-eynollah.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-eynollah.yml b/.github/workflows/test-eynollah.yml index c9d6d86..59503aa 100644 --- a/.github/workflows/test-eynollah.yml +++ b/.github/workflows/test-eynollah.yml @@ -25,12 +25,17 @@ jobs: df -h - uses: actions/checkout@v4 - uses: actions/cache@v4 - id: model_cache + id: seg_model_cache with: path: models_eynollah key: ${{ runner.os }}-models + - uses: actions/cache@v4 + id: bin_model_cache + with: + path: default-2021-03-09 + key: ${{ runner.os }}-modelbin - name: Download models - if: steps.model_cache.outputs.cache-hit != 'true' + if: steps.seg_model_cache.outputs.cache-hit != 'true' || steps.bin_model_cache.outputs.cache-hit != 'true' run: make models - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v5