All of lore.kernel.org
 help / color / mirror / Atom feed
From: Elizabeth Flanagan <elizabeth.flanagan@intel.com>
To: yocto@yoctoproject.org
Subject: [AB PATCH 00/22] Consolidated patch set.
Date: Wed, 19 Mar 2014 13:50:58 -0700	[thread overview]
Message-ID: <cover.1395261635.git.elizabeth.flanagan@intel.com> (raw)

This patch set is currently running on dev-ab-master.pdx.yoctodev.org:8010 for
testing purposes. 

The main bits of functionality here:
- fixes up some of the last issues with yoctogit.py that have cropped up.
- fixes how we use patchExists within yoctogit.py
- reimpliments some old release functionality that we lost with the UI changes.
- Cleans up some yoctogit.py code
- supports the name change of core-image-basic
- gives us some logging with the buildslave-janitor
- adds a new buildset to run builds on target

The following changes since commit ff48d4619a6910aa37473fd323d1865d8a32eb0c:

  BuildSet.py: Indent error causes triggers with no nowait to fail (2014-03-19 08:47:16 -0700)

are available in the git repository at:

  git://git.yoctoproject.org/yocto-autobuilder eflanagan/yocto-autobuilder-dev
  http://git.yoctoproject.org/cgit.cgi//log/?h=eflanagan/yocto-autobuilder-dev

Beth Flanagan (10):
  yoctogit.py: Use self.srcdir, not local srcdir construct.
  yoctogit.py: movecopy should only move 'build'
  yoctogit.py: DRYing up some code
  yoctogit.py: Fix timeouts.
  yoctogit.py: Set workdir for the class
  yoctogit.py: Set workdir within dovccmd
  yoctogit.py: change _srccopy fromdir to it's own construction
  PublishArtifacts.py: Exclude genericx86-64 pre-1.5
  SetDest.py: Use new UI variables.
  yoctogit.py: sync on mv

Elizabeth Flanagan (9):
  yoctogit.py: Fix cp construction from source to build
  BuildImages.py: core-image-basic name change support
  yoctogit.py: movecopy doesn't care if it's updateable
  yoctogit.py: movecopy needs an incremental callback
  CheckOutLayers.py: Remove unset Props
  yoctogit.py: pathExists returns a defered value.
  CheckOutLayers.py: Remove srcdir
  yoctogit.py: Stop passing in srcdir.
  yoctogit.py: Check for mirror on incremental builds

Richard Purdie (2):
  yocto-start-autobuilder: Make sure janitor logging goes to a log file
  buildslave-janitor: Add in try/except handling to make calls robust
    against failure

Stefan Stanacar (1):
  buildsets: add a new buildset to run builds on target

 bin/buildslave-janitor                             |  15 +-
 .../nightly-qa-targetbuilds.conf                   |  26 +++
 .../site-packages/autobuilder/BuildSet.py          |   2 -
 .../autobuilder/buildsteps/BuildImages.py          |   9 ++
 .../autobuilder/buildsteps/CheckOutLayers.py       |   9 +-
 .../autobuilder/buildsteps/PublishArtifacts.py     |  15 +-
 .../autobuilder/buildsteps/SetDest.py              |   7 +-
 .../buildbot/steps/source/yoctogit.py              | 177 ++++++++++-----------
 yocto-start-autobuilder                            |   2 +-
 9 files changed, 145 insertions(+), 117 deletions(-)
 create mode 100644 buildset-config.master/nightly-qa-targetbuilds.conf

-- 
1.8.1.2



             reply	other threads:[~2014-03-19 20:55 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-03-19 20:50 Elizabeth Flanagan [this message]
2014-03-19 20:50 ` [AB PATCH 01/22] buildsets: add a new buildset to run builds on target Elizabeth Flanagan
2014-03-19 20:51 ` [AB PATCH 02/22] yoctogit.py: Fix cp construction from source to build Elizabeth Flanagan
2014-03-20 14:29   ` Burton, Ross
2014-03-20 21:53     ` Flanagan, Elizabeth
2014-03-19 20:51 ` [AB PATCH 03/22] BuildImages.py: core-image-basic name change support Elizabeth Flanagan
2014-03-20 14:23   ` Burton, Ross
2014-03-19 20:51 ` [AB PATCH 04/22] yoctogit.py: movecopy doesn't care if it's updateable Elizabeth Flanagan
2014-03-19 20:51 ` [AB PATCH 05/22] yoctogit.py: movecopy needs an incremental callback Elizabeth Flanagan
2014-03-20 14:25   ` Burton, Ross
2014-03-19 20:51 ` [AB PATCH 06/22] CheckOutLayers.py: Remove unset Props Elizabeth Flanagan
2014-03-19 20:51 ` [AB PATCH 07/22] yoctogit.py: pathExists returns a defered value Elizabeth Flanagan
2014-03-19 20:51 ` [AB PATCH 08/22] CheckOutLayers.py: Remove srcdir Elizabeth Flanagan
2014-03-19 20:51 ` [AB PATCH 09/22] yoctogit.py: Stop passing in srcdir Elizabeth Flanagan
2014-03-19 20:51 ` [AB PATCH 10/22] yoctogit.py: Check for mirror on incremental builds Elizabeth Flanagan
2014-03-19 20:51 ` [AB PATCH 11/22] yoctogit.py: Use self.srcdir, not local srcdir construct Elizabeth Flanagan
2014-03-19 20:51 ` [AB PATCH 12/22] yoctogit.py: movecopy should only move 'build' Elizabeth Flanagan
2014-03-19 20:51 ` [AB PATCH 13/22] yoctogit.py: DRYing up some code Elizabeth Flanagan
2014-03-19 20:51 ` [AB PATCH 14/22] yoctogit.py: Fix timeouts Elizabeth Flanagan
2014-03-19 20:51 ` [AB PATCH 15/22] yoctogit.py: Set workdir for the class Elizabeth Flanagan
2014-03-19 20:51 ` [AB PATCH 16/22] yoctogit.py: Set workdir within dovccmd Elizabeth Flanagan
2014-03-19 20:51 ` [AB PATCH 17/22] yoctogit.py: change _srccopy fromdir to it's own construction Elizabeth Flanagan
2014-03-19 20:51 ` [AB PATCH 18/22] PublishArtifacts.py: Exclude genericx86-64 pre-1.5 Elizabeth Flanagan
2014-03-19 20:51 ` [AB PATCH 19/22] SetDest.py: Use new UI variables Elizabeth Flanagan
2014-03-19 20:51 ` [AB PATCH 20/22] yocto-start-autobuilder: Make sure janitor logging goes to a log file Elizabeth Flanagan
2014-03-19 20:51 ` [AB PATCH 21/22] buildslave-janitor: Add in try/except handling to make calls robust against failure Elizabeth Flanagan
2014-03-19 20:51 ` [AB PATCH 22/22] yoctogit.py: sync on mv Elizabeth Flanagan
2014-03-20 23:18   ` Burton, Ross

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.1395261635.git.elizabeth.flanagan@intel.com \
    --to=elizabeth.flanagan@intel.com \
    --cc=yocto@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.