mirror of
https://github.com/qurator-spk/eynollah.git
synced 2025-06-09 20:29:55 +02:00
CI: add binarization models to cache
This commit is contained in:
parent
9c769d4cc5
commit
9dc33db108
1 changed files with 7 additions and 2 deletions
9
.github/workflows/test-eynollah.yml
vendored
9
.github/workflows/test-eynollah.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue