From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by yocto-www.yoctoproject.org (Postfix, from userid 118) id 232C1E00B37; Wed, 16 Mar 2016 07:25:33 -0700 (PDT) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on yocto-www.yoctoproject.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 X-Spam-HAM-Report: * -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% * [score: 0.0000] * -5.0 RCVD_IN_DNSWL_HI RBL: Sender listed at http://www.dnswl.org/, high * trust * [192.55.52.88 listed in list.dnswl.org] Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id 971BCE00872 for ; Wed, 16 Mar 2016 07:25:29 -0700 (PDT) Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga101.fm.intel.com with ESMTP; 16 Mar 2016 07:25:31 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.24,345,1455004800"; d="scan'208";a="67488026" Received: from linux.intel.com ([10.23.219.25]) by fmsmga004.fm.intel.com with ESMTP; 16 Mar 2016 07:25:29 -0700 Received: from vmed.fi.intel.com (vmed.fi.intel.com [10.237.72.51]) by linux.intel.com (Postfix) with ESMTP id DBCC66A4004 for ; Wed, 16 Mar 2016 08:13:13 -0700 (PDT) From: Ed Bartosh To: toaster@yoctoproject.org Date: Wed, 16 Mar 2016 14:05:19 +0200 Message-Id: X-Mailer: git-send-email 2.1.4 Subject: [PATCH v5 00/19] per project build directory X-BeenThere: toaster@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Web based interface for BitBake List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Mar 2016 14:25:33 -0000 Hi, Default build directory is not going to be used for project builds anymore. It can be used only for command line builds. Toaster will use build-toaster- directories for project builds. This is how to test this: - run toaster - run command line build: build zlib - check if it's shown in Toaster UI - create project for Yocto master - trigger project build from UI - wait until it succeeds - create project for Jethro - trigger project build from UI - wait until it succeds - check that 2 build directories build-toaster- exist and contain correct conf/toaster.conf and conf/bblayers.conf Changes in v2: stop bitbake server after the build Changes in v3: fixed '/bin/sh: 1: source: not found' dash issue used project id in build directory name added 'INHERIT+='toaster buildhistory' to conf/local.conf on toaster start Changes in v4: fixed builds on Ubuntu caused by dash being default shell Changes in v5: fixed nasty bug in toasterui causing it to stuck in event loop The following changes since commit 01ab10ddaf21e34d8b3578975d1494cf0cfa4ef7: toaster.bbclass: show packages that were setscened into existence too (2016-03-10 15:58:34 +0000) are available in the git repository at: git://git.yoctoproject.org/poky-contrib ed/toaster/project-build-dir-7880 http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=ed/toaster/project-build-dir-7880 Ed Bartosh (18): toaster: don't start bitbake server toaster: get rid of noui option toaster: set BITBAKE_UI environment variable toasterui: add brbe parameter to buildinfohelper uievent: improve BBUIEventQueue code buildinfohelper: improve handling of providermap toasterui: fix brbe reporting toaster: remove startBBServer API toaster: remove release API toaster: add brbe parameter to triggerBuild toaster: modified setLayers API toaster: reimplement triggerBuild toaster: add new parameter to _shellcmd toaster: stop bitbake server after the build toaster: update conf/local.conf toaster: fix jethro build toaster: use bash explicitly toasterui: shutdown on BuildCompleted event Elliot Smith (1): toasterui: detect build run start correctly on Jethro bitbake/bin/toaster | 79 ++--------- bitbake/lib/bb/ui/buildinfohelper.py | 48 +++---- bitbake/lib/bb/ui/toasterui.py | 48 ++++--- bitbake/lib/bb/ui/uievent.py | 10 +- bitbake/lib/toaster/bldcontrol/bbcontroller.py | 33 ----- .../toaster/bldcontrol/localhostbecontroller.py | 146 ++++++++++----------- .../bldcontrol/management/commands/runbuilds.py | 6 +- 7 files changed, 147 insertions(+), 223 deletions(-) -- Regards, Ed