-
Notifications
You must be signed in to change notification settings - Fork 11
Open
Description
Problem:
If commands have duplicate nested depends we will execute them all, for example:
commands:
build-image: docker build -f Dockerfile .
build-all:
depends: [build-image]
run:
depends: [build-image, build-all]
cmd: npm run devIn the example above we will run build-image twice - once run:build-image and second run:build-all:build-image
Solution:
We can try to de-duplicate depends on config parse step since we know want command chain will be executed.
Metadata
Metadata
Assignees
Labels
No labels