From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mx1.pokylinux.org (Postfix) with ESMTP id 4CB324C80039 for ; Tue, 21 Dec 2010 11:36:21 -0600 (CST) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga101.jf.intel.com with ESMTP; 21 Dec 2010 09:36:10 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.60,208,1291622400"; d="scan'208";a="689377166" Received: from eflanlinux.jf.intel.com (HELO [10.7.201.149]) ([10.7.201.149]) by orsmga001.jf.intel.com with ESMTP; 21 Dec 2010 09:36:10 -0800 Message-ID: <4D10E596.4010209@intel.com> Date: Tue, 21 Dec 2010 09:36:22 -0800 From: Elizabeth Flanagan User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.16) Gecko/20101125 SUSE/3.0.11 Lightning/1.0b1 Thunderbird/3.0.11 ThunderBrowse/3.3.3 MIME-Version: 1.0 To: "yocto@yoctoproject.org" , Autobuilder Backup Cron Subject: [PATCH 0/3] Consolidate Pull Requests for Autobuilder X-BeenThere: yocto@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Discussion of all things Yocto List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Dec 2010 17:36:21 -0000 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Scott, This pull request updates the buildbot installer to support BuildBot 0.8.3, which was released yesterday, as well as updated build helper scripts and a new pokyABConfig.py which adds a swabber testing target,implements all current autobuilder build arches and lastly, implements sanity testing. The buildbot installer script has been re-written in python and an INSTALL file added to explain the new installation process. I've tested it on Ubuntu 10.10 and openSUSE 11.3, and would appreciate anyone who has a different system letting me know what their experiences with it were (good and bad). Also included in this pull request is a fix RP made to the live builder this morning to fix an issue with piky-autobuild sourcing the wrong file. Pull URL: git://git.pokylinux.org/poky-contrib.git Branch: eflanagan/bb-0.8.3 Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=eflanagan/bb-0.8.3 Thanks, Beth Flanagan --- Beth Flanagan (3): Upgrade to Buildbot 0.8.3: scripts/poky-setup-autobuilder Adding new scripts to reflect a real autobuilder Change to poky-autobuild to source correct file: INSTALL | 55 +++ README | 6 +- scripts/poky-autobuild | 39 ++- scripts/poky-autobuild-cleanoutput | 6 +- scripts/poky-autobuild-copy-images | 458 +++++++++++++++++++ scripts/poky-autobuild-generate-release-external | 220 +++++++++ scripts/poky-autobuild-generate-release-internal | 232 ++++++++++ scripts/poky-autobuild-generate-sources-tarball | 54 +++ scripts/poky-autobuild-postprocess | 6 +- scripts/poky-autobuild-preamble | 58 +++ scripts/poky-autobuild-rename-release-images | 128 ++++++ scripts/poky-autobuild-sanitytest | 58 +++ scripts/poky-output-sort | 117 +++++ scripts/poky-preserve-work-dir | 26 +- scripts/poky-setup-autobuilder | 514 +++++++++++++++------- scripts/pokyABConfig.py | 469 +++++++++++++++----- scripts/run-on-buildset-success | 11 + 17 files changed, 2154 insertions(+), 303 deletions(-) create mode 100644 INSTALL create mode 100755 scripts/poky-autobuild-copy-images create mode 100755 scripts/poky-autobuild-generate-release-external create mode 100755 scripts/poky-autobuild-generate-release-internal create mode 100755 scripts/poky-autobuild-generate-sources-tarball create mode 100755 scripts/poky-autobuild-preamble create mode 100755 scripts/poky-autobuild-rename-release-images create mode 100755 scripts/poky-autobuild-sanitytest create mode 100755 scripts/poky-output-sort create mode 100755 scripts/run-on-buildset-success