-
-
Notifications
You must be signed in to change notification settings - Fork 764
Closed
Description
I used a lot of Gradle in the past. One of the most features I miss in Cake, is to run multiple tasks from CLI. In Gradle I could simple run .\gradlew clean build. In Cake I’m forced to use IsDependentOn, which does not make sense in every use case (I don’t want to run clean on every build).
It bothers me especial on my build environment (CI). It would be a lot easier to call multiple tasks in one stage. I think this would be a great feature and make Cake much better.
- Pass a list of arguments to
RunTarget. - Use the argument order and call every task including
IsDependentOntasks. - Consider the tree dependency of the tasks, to order them as well.
cbittencourt, Mrks83, foragerr, gitfool, hardcoded2 and 3 more