Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Buildbot force build via python

Just a little question : it's possible to force a build in Buildbot via a python script or command line (and not via the web interface) ?

Thank you!

like image 789
urza57 Avatar asked Mar 22 '23 09:03

urza57


1 Answers

If you have a PBSource configured in your master.cfg, you can send a change from the command line:

buildbot sendchange --master {MASTERHOST}:{PORT} --auth {USER}:{PASS}
    --who {USER} {FILENAMES..}
like image 196
David Dean Avatar answered Apr 02 '23 17:04

David Dean