I have a Bamboo Build Plan, with the following set of tasks.
Task 3 has the following content in it:
APP_HOME=${bamboo.build.working.directory}
unzip $APP_HOME/tomcat/apache-tomcat-6.0.45-windows-x64.zip
export CATALINA_HOME=$APP_HOME/tomcat/apache-tomcat-6.0.45
export PATH="$PATH:$CATALINA_HOME/bin"
But when I execute 4th Task (Ant), the Build is not considering the CATALINA_HOME & PATH variable which is set as part of Task 3. What is wrong here? Why am I not able to access the environment variable that is set in Task 3?
Cross-posted (and answered) at: https://stackoverflow.com/questions/62539690/unable-to-access-environment-variable-in-bamboo-build-plan
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.