stages:
stage1:
cmd: echo foo > foo
outs:
- foo
Let's say, if we have above stage, with no dependencies and an output. When I run it and rerun it again, it says
$ dvc repro
Running stage 'stage1':
> echo foo > foo
Generating lock file 'dvc.lock'
Updating lock file 'dvc.lock'
To track the changes with git, run:
git add dvc.lock .gitignore
To enable auto staging, run:
dvc config core.autostage true
Use `dvc push` to send your updates to remote storage.
Stage 'stage1' didn't change, skipping
$ dvc repro
Stage 'stage1' didn't change, skipping
Data and pipelines are up to date.
But if I have a lock file missing or stage name changed, it will force a rerun.
Ideally, run-cache is supposed to prevent this scenario, but it does not work for a stage without any dependencies. Should it cache those kinds of stages?
cc @efiop
Related: https://iterativeai.slack.com/archives/C044738NACC/p1706207735608469
Let's say, if we have above stage, with no dependencies and an output. When I run it and rerun it again, it says
But if I have a lock file missing or stage name changed, it will force a rerun.
Ideally, run-cache is supposed to prevent this scenario, but it does not work for a stage without any dependencies. Should it cache those kinds of stages?
cc @efiop
Related: https://iterativeai.slack.com/archives/C044738NACC/p1706207735608469