From c368d83bd6b34c2420c3d1d7269d8dc2edba1ce9 Mon Sep 17 00:00:00 2001 From: Alexandru DAMIAN Date: Mon, 16 Feb 2015 17:47:07 +0000 Subject: bitbake: toaster: bitbake cooker log saving and downloading This patch brings in cooker log saving and proper download links. * toasterui will now write the cooker log file if running in managed mode * the BuildRequest has a new state, REQ_ARCHIVE, indicating that the build is completed, and the artifacts are ready to be grabbed * the runbuild test execution commands will gather needed artifacts, and save them to a storage directory selected during Toaster setup. * the build dashboard, project builds and all builds pages have permanent links for the cooker log [YOCTO #7220] [YOCTO #7206] (Bitbake rev: fad80e36c9da663b000cdf2cb3c75440c6431d84) Signed-off-by: Alexandru DAMIAN Signed-off-by: Richard Purdie --- bitbake/lib/toaster/toastermain/urls.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'bitbake/lib/toaster/toastermain') diff --git a/bitbake/lib/toaster/toastermain/urls.py b/bitbake/lib/toaster/toastermain/urls.py index f66f11dcde..395c4e8c34 100644 --- a/bitbake/lib/toaster/toastermain/urls.py +++ b/bitbake/lib/toaster/toastermain/urls.py @@ -50,12 +50,12 @@ import toastermain.settings if toastermain.settings.FRESH_ENABLED: urlpatterns.insert(1, url(r'', include('fresh.urls'))) - logger.info("Enabled django-fresh extension") + #logger.info("Enabled django-fresh extension") if toastermain.settings.DEBUG_PANEL_ENABLED: import debug_toolbar urlpatterns.insert(1, url(r'', include(debug_toolbar.urls))) - logger.info("Enabled django_toolbar extension") + #logger.info("Enabled django_toolbar extension") if toastermain.settings.MANAGED: @@ -86,4 +86,4 @@ for t in os.walk(os.path.dirname(currentdir)): logger.warn("Module \'%s\' has a regexp conflict, was not added to the urlpatterns" % modulename) from pprint import pformat -logger.debug("urlpatterns list %s", pformat(urlpatterns)) +#logger.debug("urlpatterns list %s", pformat(urlpatterns)) -- cgit v1.2.3-54-g00ecf