So if I have a test plan running on bamboo and I want to get the status of the build pushed to github every-time I commit and push to the remote branch. Is there a way to do that?
You can also try this plugin: https://github.com/HackAttack/bamboo-github-status
I am not sure how to get this plugin to work. Can you please give me more info on this. The readme is not much help
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Dunia Alrabadi, welcome to the Atlassian Community :)
Currently solution for that is to have a final task on your build that will fetch the current status of build and use Github API to update your remote branch status.
We have an open suggestion for Webhook notification type BAM-14321 that could make your life easier, please follow it for status update as we have it under consideration for next releases.
Victor
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 @Dunia Alrabadi
You may use the REST API with the endpoint /result. The URL you would use looks more or less like this (remember to substitute the <variables> :))
http://<Your Bamboo URL>/rest/api/latest/result/<projectKey>-<buildKey>-latest
Did that help you?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
that helps a little more. My question is would this work even if the build is not finished? I would use this url in the final stage, which is within the build
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you run the REST call from inside the build, it will be reported as "In progress". I have some alternatives to this option:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I like that last idea. If I make a variable within the bamboo plan, do different tasks have access to them?
for example if I make a variable STATE = False
if the build gets to the last not final task then i will set the STATE to TRUE. However if it doesn't then in the final task it will see that it is false and push to get hub. Can I do that? Meaning reading and writing a variable within different tasks?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, you can read and write a variable within different tasks. You need to use plan variables.
Did it help?
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.