mirror of
https://github.com/qurator-spk/eynollah.git
synced 2025-10-06 22:50:14 +02:00
Merge remote-tracking branch 'bertsky/loky-with-shm-for-175-rebuilt' into prepare-v0.6.0
This commit is contained in:
commit
96eb1c11e6
16 changed files with 1558 additions and 1312 deletions
29
.github/workflows/test-eynollah.yml
vendored
29
.github/workflows/test-eynollah.yml
vendored
|
@ -24,24 +24,39 @@ jobs:
|
|||
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
|
||||
df -h
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/cache@v4
|
||||
- uses: actions/cache/restore@v4
|
||||
id: seg_model_cache
|
||||
with:
|
||||
path: models_layout_v0_5_0
|
||||
key: ${{ runner.os }}-models
|
||||
- uses: actions/cache@v4
|
||||
key: seg-models
|
||||
- uses: actions/cache/restore@v4
|
||||
id: ocr_model_cache
|
||||
with:
|
||||
path: models_ocr_v0_5_0
|
||||
key: ${{ runner.os }}-models
|
||||
- uses: actions/cache@v4
|
||||
path: models_ocr_v0_5_1
|
||||
key: ocr-models
|
||||
- uses: actions/cache/restore@v4
|
||||
id: bin_model_cache
|
||||
with:
|
||||
path: default-2021-03-09
|
||||
key: ${{ runner.os }}-modelbin
|
||||
key: bin-models
|
||||
- name: Download models
|
||||
if: steps.seg_model_cache.outputs.cache-hit != 'true' || steps.bin_model_cache.outputs.cache-hit != 'true' || steps.ocr_model_cache.outputs.cache-hit != true
|
||||
run: make models
|
||||
- uses: actions/cache/save@v4
|
||||
if: steps.seg_model_cache.outputs.cache-hit != 'true'
|
||||
with:
|
||||
path: models_layout_v0_5_0
|
||||
key: seg-models
|
||||
- uses: actions/cache/save@v4
|
||||
if: steps.ocr_model_cache.outputs.cache-hit != 'true'
|
||||
with:
|
||||
path: models_ocr_v0_5_1
|
||||
key: ocr-models
|
||||
- uses: actions/cache/save@v4
|
||||
if: steps.bin_model_cache.outputs.cache-hit != 'true'
|
||||
with:
|
||||
path: default-2021-03-09
|
||||
key: bin-models
|
||||
- name: Set up Python ${{ matrix.python-version }}
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue