mirror of
https://github.com/mwisnowski/mtg_python_deckbuilder.git
synced 2025-12-18 00:20:13 +01:00
Change tagging step to run in parallel
This commit is contained in:
parent
8435312c8f
commit
74eb47e670
1 changed files with 2 additions and 2 deletions
4
.github/workflows/build-similarity-cache.yml
vendored
4
.github/workflows/build-similarity-cache.yml
vendored
|
|
@ -78,10 +78,10 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
python -c "from code.file_setup.setup import initial_setup; initial_setup()"
|
python -c "from code.file_setup.setup import initial_setup; initial_setup()"
|
||||||
|
|
||||||
- name: Run tagging (serial - more reliable in CI)
|
- name: Run tagging (parallel)
|
||||||
if: steps.check_cache.outputs.needs_build == 'true'
|
if: steps.check_cache.outputs.needs_build == 'true'
|
||||||
run: |
|
run: |
|
||||||
python -c "from code.tagging.tagger import run_tagging; run_tagging(parallel=False)"
|
python -c "from code.tagging.tagger import run_tagging; run_tagging(parallel=True)"
|
||||||
|
|
||||||
- name: Build similarity cache (Parquet) from card_files/processed/all_cards.parquet
|
- name: Build similarity cache (Parquet) from card_files/processed/all_cards.parquet
|
||||||
if: steps.check_cache.outputs.needs_build == 'true'
|
if: steps.check_cache.outputs.needs_build == 'true'
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue