Bluestopher
Explore posts from serversPrecondition with OR does not work
Hey all,
I have a build pre condition that checks two things: production or version. If the build is production I want to validate the version in my pre condition and if the build is not production I want to continue successfully without validating the version. When I run the two expression together it fails even when I specify PRODUCTION = false. That is, if I pass PRODUCTION == false I want to skip validating the version and continue successfully and if PRODUCTION == true I want to validate the version with my regex and fail if it is not a valid format.
Here is my pre condition:
If PRODUCTION == "false" I want to skip performing the version format validation in the "||" and successfully pass the pre condition.
If VERSION is not in the correct format when PRODUCTION == "true" I want to fail the pre condition.
2 replies
Required input does not prevent dependencies from running and dependencies do not share variables
Hey all,
I am running into two problems with my build release task:
1. In my dependencies section I have duplications with the variables I want to pass to each dependency. Do we have a way to pass common variables to all dependencies instead of explicitly setting them for each dependency?
2. In my requires statement I have a few required variables. If a user does not pass all the required variables I do not want my task or its dependencies to run. Currently, my dependencies will all run and then my task will fail before it executes the command. Is that the expected behavior or am I able to block all dependencies from running as well if required parameters are not passed?
Here is my build release task:
3 replies