From: Ed Bartosh <ed.bartosh@linux.intel.com>
To: toaster@yoctoproject.org
Subject: [PATCH 00/15] Build cancellation
Date: Thu, 17 Mar 2016 17:41:43 +0200 [thread overview]
Message-ID: <cover.1458229060.git.ed.bartosh@linux.intel.com> (raw)
This is build cancelation functionality implemented by Sujith and Michael
and modified by me to work on top of 'per project build directory' patchset.
NOTE: This patchset depends on 'per project build directory' patchset' v5:
https://lists.yoctoproject.org/pipermail/toaster/2016-March/004170.html
The following changes since commit e4ba8a50641b6a2ad8ccda5fc62c61fdf7cef733:
toasterui: shutdown on BuildCompleted event (2016-03-17 17:31:00 +0200)
are available in the git repository at:
git://git.yoctoproject.org/poky-contrib ed/toaster/project-build-dir-7880-cancel
http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=ed/toaster/project-build-dir-7880-cancel
Ed Bartosh (2):
toaster: fix conflicting migrations
toaster: use empty token
Michael Wood (9):
toaster: Move xhr calls for starting and stopping builds
toaster: xhr Update the implementation of the build cancellation
request
toaster: libtoaster Update implementation of startABuild and
cancelABuild
toaster: bldcontrol models Add a cancelling state the BuildRequest
buildinfohelper: Add handler for cancelling a build
toaster: mrb_section template Add build cancel button
toaster: models Exclude the CANCELLED builds from get_number_of_builds
toaster: runbuilds Make runbuilds aware of the build CANCELLED state
toaster: runbuilds Clean up runbuilds
Sujith H (4):
toaster: bldcontrol Add forceShutDown function to BitbakeController
toaster: update BuildEnvironmentController and BitbakeController
toaster: models Add cancelled state to build outcome
toaster: tables BuildsTable exclude cancelled builds
bitbake/lib/bb/ui/buildinfohelper.py | 19 ++-
bitbake/lib/toaster/bldcontrol/bbcontroller.py | 29 +---
.../toaster/bldcontrol/localhostbecontroller.py | 4 +-
.../bldcontrol/management/commands/runbuilds.py | 107 ++++++++++-----
.../migrations/0002_add_cancelling_state.py | 19 +++
.../toaster/bldcontrol/migrations/0003_merge.py | 15 +++
bitbake/lib/toaster/bldcontrol/models.py | 27 +++-
.../orm/migrations/0006_add_cancelled_state.py | 19 +++
bitbake/lib/toaster/orm/migrations/0007_merge.py | 15 +++
bitbake/lib/toaster/orm/models.py | 12 +-
bitbake/lib/toaster/toastergui/api.py | 110 +++++++++++++++
.../toaster/toastergui/static/js/customrecipe.js | 4 +-
.../lib/toaster/toastergui/static/js/layerBtn.js | 3 +-
.../lib/toaster/toastergui/static/js/libtoaster.js | 41 +++---
.../lib/toaster/toastergui/static/js/mrbsection.js | 95 +++++++++++++
.../toaster/toastergui/static/js/projectpage.js | 4 +-
.../toaster/toastergui/static/js/projecttopbar.js | 6 +-
.../toaster/toastergui/static/js/recipedetails.js | 4 +-
bitbake/lib/toaster/toastergui/tables.py | 48 +------
bitbake/lib/toaster/toastergui/templates/base.html | 1 +
.../toaster/toastergui/templates/mrb_section.html | 148 ++++++++-------------
bitbake/lib/toaster/toastergui/urls.py | 5 +
22 files changed, 507 insertions(+), 228 deletions(-)
create mode 100644 bitbake/lib/toaster/bldcontrol/migrations/0002_add_cancelling_state.py
create mode 100644 bitbake/lib/toaster/bldcontrol/migrations/0003_merge.py
create mode 100644 bitbake/lib/toaster/orm/migrations/0006_add_cancelled_state.py
create mode 100644 bitbake/lib/toaster/orm/migrations/0007_merge.py
create mode 100644 bitbake/lib/toaster/toastergui/api.py
create mode 100644 bitbake/lib/toaster/toastergui/static/js/mrbsection.js
--
Regards,
Ed
next reply other threads:[~2016-03-17 18:02 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-03-17 15:41 Ed Bartosh [this message]
2016-03-17 15:41 ` [PATCH 01/15] toaster: bldcontrol Add forceShutDown function to BitbakeController Ed Bartosh
2016-03-17 15:41 ` [PATCH 02/15] toaster: Move xhr calls for starting and stopping builds Ed Bartosh
2016-03-17 15:41 ` [PATCH 03/15] toaster: xhr Update the implementation of the build cancellation request Ed Bartosh
2016-03-17 15:41 ` [PATCH 04/15] toaster: libtoaster Update implementation of startABuild and cancelABuild Ed Bartosh
2016-03-17 15:41 ` [PATCH 05/15] toaster: update BuildEnvironmentController and BitbakeController Ed Bartosh
2016-03-17 15:41 ` [PATCH 06/15] toaster: models Add cancelled state to build outcome Ed Bartosh
2016-03-17 15:41 ` [PATCH 07/15] toaster: bldcontrol models Add a cancelling state the BuildRequest Ed Bartosh
2016-03-17 15:41 ` [PATCH 08/15] buildinfohelper: Add handler for cancelling a build Ed Bartosh
2016-03-17 15:41 ` [PATCH 09/15] toaster: tables BuildsTable exclude cancelled builds Ed Bartosh
2016-03-17 15:41 ` [PATCH 10/15] toaster: mrb_section template Add build cancel button Ed Bartosh
2016-03-17 15:41 ` [PATCH 11/15] toaster: models Exclude the CANCELLED builds from get_number_of_builds Ed Bartosh
2016-03-17 15:41 ` [PATCH 12/15] toaster: runbuilds Make runbuilds aware of the build CANCELLED state Ed Bartosh
2016-03-17 15:41 ` [PATCH 13/15] toaster: runbuilds Clean up runbuilds Ed Bartosh
2016-03-17 15:41 ` [PATCH 14/15] toaster: fix conflicting migrations Ed Bartosh
2016-03-17 15:41 ` [PATCH 15/15] toaster: use empty token Ed Bartosh
2016-03-19 23:13 ` [PATCH 00/15] Build cancellation Brian Avery
2016-03-20 17:12 ` Brian Avery
2016-03-21 10:34 ` Ed Bartosh
2016-03-21 18:07 ` Brian Avery
2016-03-21 18:37 ` Barros Pena, Belen
2016-03-21 21:18 ` Brian Avery
2016-03-22 13:45 ` Barros Pena, Belen
2016-03-21 10:14 ` Ed Bartosh
2016-03-21 11:14 ` Smith, Elliot
2016-03-21 11:36 ` Barros Pena, Belen
2016-03-21 18:04 ` Brian Avery
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cover.1458229060.git.ed.bartosh@linux.intel.com \
--to=ed.bartosh@linux.intel.com \
--cc=toaster@yoctoproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.