Why does pipeline task with "depends" on, not wait before first step is done? #1144
-
|
I don't understand why I in the following output see logs from Did I misunderstand something here? I'm also unsure why I get this graph image - should |
Beta Was this translation helpful? Give feedback.
Answered by
mehulkar
Feb 17, 2023
Replies: 1 comment 1 reply
-
|
If |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
mehulkar
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If
build-setupis a dependency ofweb-app, you should change yourdependsOnto["^setup", "^build"]. The^denotes, that you want the those tasks from dependencies to run and complete first.