I am having buildbot master in one PC and slaves in other one. I need the buildbot build log url like (http://:8010/builders/xyz/builds/1) in slave PC for each build in an automated way.
Could someone help in getting the same.
Thanks in advance.
I am having buildbot master in one PC and slaves in other one. I need the buildbot build log url like (http://:8010/builders/xyz/builds/1) in slave PC for each build in an automated way.
Could someone help in getting the same.
Thanks in advance.
You can use build properties:
self.getProperty("buildnumber")
or, if you need to include it in a command:
d = WithProperties('%s','buildnumber')
command = ['echo', d]
Then the url will be: BUILDBOT_URL/xyz/builds/BUILD_NUMBER