You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
jc@mathai3:~/Downloads/dvc_test$ dvc repro build@15Running callback stage 'build@15' with command: echo 1515Use `dvc push` to send your updates to remote storage.
The following version doesn't work, even though build is defined in stages section.
jc@mathai3:~/Downloads/dvc_test$ dvc repro buildERROR: "Stage 'build' not found inside 'dvc.yaml' file"
I wish we could make it equivalent to
for item in 15 25 35; do dvc repro build@$itemdone
Furthermore, depends on whether there's a lock, multiple stages can be run in parallel.
The text was updated successfully, but these errors were encountered:
Hi, @johnnychen94. Glad to see an issue for the parameterization (and, seeing someone using it 😄). I am working on this feature and will be implemented around the pre-release (which might be backwards-incompatible).
* repro: support regex/foreach-group to run at once
Fixes#4912Fixes#4886Fixes#4958
* Use `tree.isdir` rather than `os.path.isdir`
* Use glob rather than regex
* Update dvc/command/repro.py
* s/regex/glob
* disable glob on `collect_granular`
There's no need for a glob here
* add tests for `collect` and `collect_granular`
The following version doesn't work, even though
build
is defined instages
section.I wish we could make it equivalent to
Furthermore, depends on whether there's a lock, multiple stages can be run in parallel.
The text was updated successfully, but these errors were encountered: