I'm trying to use Ant along with Ivy, and am trying to use Ant to do a user-install of ivy. This command works locally (and on the default Ubuntu elastic bamboo image when run as a Script task):
ant -f ${ANT_HOME}/fetch.xml -Ddest=user ivy
But when I try using the Ant build task configured like so:
I keep getting this error in my logs:
Buildfile: ${ANT_HOME}/fetch.xml does not exist!
But I see in the blue log box for the Ant task that ANT_HOME is defined:
I've verified that the fetch.xml file does exist in /opt/apache-ant-1.10.5, so what am I doing wrong?
Hi @Dov Frankel
Usually, the task body does not resolve variables from the terminal. The variable ANT_HOME does not exist in the Bamboo application variable context. You should be able to find a variable called bamboo_capability_system_builder_ant_<name> where <name>is the label you gave to your ANT capability when creating it. You can find the right variable in your build logs.
Your test works on a script task because the variable you add there is evaluated on the terminal and therefore the variable is available.
Please let me know if that makes sense to you.
Thanks! I was able to use:
${bamboo.capability.system.builder.ant.Ant 1.10}/fetch.xml
It took a little tinkering to get the naming right, but that worked.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You are welcome!
I'm glad to see that you can now move forward.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.