I've set up Bamboo on a separate host and now I'm playing with. So far, I've been able to check out a sample source code and build it with maven successfully. Then I added a remote agent, which is my local machine with Docker executable on it. Bamboo shows Docker among many other capabilities of the remote agent. Now, I add a third task to my job, which is a Docker image build and save it. I get `No agents meet this job's requirements.` warning. What's weird is in the Requirements tab it shows 1 agent with the Docker capability, which is my local machine. I've followed this atlassian troubleshooting guide but it didn't help (I have no dedicated agents.) Now I'm kinda confused, do I need to have all the required capabilities in all agents? Or, maybe at least one of the agents has to have all the capabilities? If no, then what's the reason I get this warning?
I have Jenkins background and in Jenkins I am able to specify which agent must execute which part of a job. Isn't that or similar possible in Bamboo?
Agents run jobs. So a single agent needs to be capable of running all the tasks contained within a single job. If you can, you will want to split out the docker task you created into it's own job and then you can have both tasks run in parallel.
I hope that helps, let me know if you have any other questions.
-James
Oh, I see. But in that case, I won't be able to access the artifacts produces as a result of maven build as:
1. They run in parallel and the Docker build job will reach the point it needs the artifacts much earlier than the build is finished.
2. Can one job access files of another job?
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.
I was just about to say that. Yes, build the maven code first in it's own stage/job. Then, have the docker stage/job run after that which can use the artifacts built in the maven stage.
-James
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks, @Jimmy Seddon Can you btw give me a quick tip on how to use artifacts of the previous stage?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Absolutely! So what you will want to do is use the "Artifact Downlad" task type and you are going to select the build plan you are currently in and it sill give you the option to select all artifact or you can specify which shared artifacts you wish to download.
-James
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.