mirror of
https://github.com/odoo/runbot.git
synced 2025-03-15 15:35:46 +07:00
[IMP] runbot: add route for opening last running build for any branch
This commit is contained in:
parent
ca9ae51477
commit
649a95f5ea
@ -1105,6 +1105,9 @@ class RunbotController(http.Controller):
|
||||
Logging = registry['ir.logging']
|
||||
|
||||
build = Build.browse(cr, uid, [int(build_id)])[0]
|
||||
if not build.exists():
|
||||
return request.not_found()
|
||||
|
||||
real_build = build.duplicate_id if build.state == 'duplicate' else build
|
||||
|
||||
# other builds
|
||||
@ -1210,6 +1213,29 @@ class RunbotController(http.Controller):
|
||||
]
|
||||
return request.render("runbot.badge_" + theme, data, headers=headers)
|
||||
|
||||
@http.route(['/runbot/b/<branch_name>'], type='http', auth="public", website=True)
|
||||
def fast_launch(self, branch_name=False, **post):
|
||||
pool, cr, uid, context = request.registry, request.cr, 1, request.context
|
||||
Build = pool['runbot.build']
|
||||
|
||||
domain = [('branch_id.branch_name', '=', branch_name)]
|
||||
builds = Build.search(cr, uid, domain, order="sequence desc", limit=1, context=context)
|
||||
|
||||
if builds:
|
||||
last_build = Build.browse(cr, uid, builds[0], context=context)
|
||||
if last_build.state == 'duplicate':
|
||||
last_build = last_build.duplicate_id
|
||||
if last_build.state != 'running':
|
||||
url = "/runbot/build/%s?ask_rebuild=1" % last_build.id
|
||||
else:
|
||||
url = ("http://%s/login?db=%s-all&login=admin&key=admin" %
|
||||
(last_build.domain, last_build.dest))
|
||||
else:
|
||||
return request.not_found()
|
||||
return werkzeug.utils.redirect(url)
|
||||
|
||||
|
||||
|
||||
# kill ` ps faux | grep ./static | awk '{print $2}' `
|
||||
# ps faux| grep Cron | grep -- '-all' | awk '{print $2}' | xargs kill
|
||||
# psql -l | grep " 000" | awk '{print $1}' | xargs -n1 dropdb
|
||||
|
Loading…
Reference in New Issue
Block a user