I have installed https://marketplace.atlassian.com/plugins/com.sysbliss.bamboo.plugins.prepost-build-command
I added a command "curl ..."
But I get a error in the log output :
simple 16-May-2015 22:48:00 [BuildCommandRunner] running command: curl ....
error 16-May-2015 22:48:00 Unable to find executable at curl. Will try to run it anyway.
So I added an Executable via /admin/agent/viewBuilders.action
Named "curl", path "curl".
That didn't work, so I tried the linux path "/usr/bin/curl", that didn't work either.
Is the problem with the addon not finding the exec, or the exec?
Use the full path to curl in prepost-build-command plugin.
Cheers, I actually worked it out by process of elimination, but still a valid post I think in case others run into this problem.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Kazi Rizwan ,
The full path is required on the field "Commands" in the plugin:
In the case of curl, you would not insert `curl` but the full path `/usr/bin/curl`
I hope that helped :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello Ian,
Please check that curl executable is available at Bamboo server or agent machine via command line.
Create Script task with curl command to identify if issue is at Bamboo or plugin side.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.