I'm setting up a project with php. Everything trigger properly before I got any task other thant checkout.
I've add phpunit call with a custom bootstrap in the phpunit.xml file. It failed because the file wasn't there. This file is generated via composer.phar that need to be executed prior the phpunit task. So I add a ant call that will use the default configuraiton (so just "ant") and here is the build.xml file
<?xml version="1.0" encoding="UTF-8"?> <project name="base" default="build"> <target name="build"> <exec executable="php"> <arg value="composer.phar" /> <arg value="install" /> </exec> </target> </project>
Since than the build get trigger but get stuck with:
"No agent can build this Job"
I don't know what to do from there !
The issue have been resolve using the Atlassion support. It was related to the fact that I 'ant' instead of 'ant 1.8' for the job configuration
Hi,
You can solve this adding the necessary capabilities on the Remote Agent. Please proceed as described here: https://confluence.atlassian.com/display/BAMBOO/Configuring+elastic+agent+capabilities
If you still need help with this, please raise a support request at https://support.atlassian.com
Lucas Lima
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.