-
Feature requestHello everyone. Is it possible somehow to skip step in pipeline if some folder not exists in git repo which was fetched in pervious step? Use caseWe have several types of repos. With following folder structure in repo.
For 1st type in my pipeline I have two gradle tasks with specific parameters for each task. Maybe it is already to possible to do something like that with conditions or when? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Yeah, your task can emit a result (e.g. this result be an array that contains a list of folder names that were fetched) that can then be checked in a when expression in the next task to decide whether it should run or not. |
Beta Was this translation helpful? Give feedback.
Yeah, your task can emit a result (e.g. this result be an array that contains a list of folder names that were fetched) that can then be checked in a when expression in the next task to decide whether it should run or not.