* [yocto-autobuilder][PATCH v2 0/2] Add a new buildset
@ 2013-04-05 7:49 Stefan Stanacar
2013-04-05 7:49 ` [yocto-autobuilder][PATCH v2 1/2] nightly-qa-extras.conf: add new buildset config Stefan Stanacar
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Stefan Stanacar @ 2013-04-05 7:49 UTC (permalink / raw)
To: yocto
The following changes since commit a9434f623752818e10e703a613ef65586c435bbd:
PublishArtifacts.py: poky-tiny deploy (2013-04-04 11:20:56 -0700)
are available in the git repository at:
git://git.yoctoproject.org/poky-contrib stefans/yab4
http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=stefans/yab4
Stefan Stanacar (2):
nightly-qa-extras.conf: add new buildset config
nightly.conf, yoctoAB.conf: enable the new nightly-qa-extras buildset
buildset-config/nightly-qa-extras.conf | 18 ++++++++++++++++++
buildset-config/nightly.conf | 2 +-
buildset-config/yoctoAB.conf | 3 ++-
3 files changed, 21 insertions(+), 2 deletions(-)
create mode 100644 buildset-config/nightly-qa-extras.conf
--
1.8.1.4
^ permalink raw reply [flat|nested] 4+ messages in thread
* [yocto-autobuilder][PATCH v2 1/2] nightly-qa-extras.conf: add new buildset config
2013-04-05 7:49 [yocto-autobuilder][PATCH v2 0/2] Add a new buildset Stefan Stanacar
@ 2013-04-05 7:49 ` Stefan Stanacar
2013-04-05 7:49 ` [yocto-autobuilder][PATCH v2 2/2] nightly.conf, yoctoAB.conf: enable the new nightly-qa-extras buildset Stefan Stanacar
2013-04-10 16:56 ` [yocto-autobuilder][PATCH v2 0/2] Add a new buildset Flanagan, Elizabeth
2 siblings, 0 replies; 4+ messages in thread
From: Stefan Stanacar @ 2013-04-05 7:49 UTC (permalink / raw)
To: yocto
This buildset is for extra images which don't really fit in other buildsets.
For now it includes builds for basic image with btrfs and changed root
home dir, a sato image with read-only rootfs and sato with systemd.
Signed-off-by: Stefan Stanacar <stefanx.stanacar@intel.com>
---
| 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
create mode 100644 buildset-config/nightly-qa-extras.conf
--git a/buildset-config/nightly-qa-extras.conf b/buildset-config/nightly-qa-extras.conf
new file mode 100644
index 0000000..7debcdd
--- /dev/null
+++ b/buildset-config/nightly-qa-extras.conf
@@ -0,0 +1,18 @@
+[nightly-qa-extras]
+builders: 'builder1'
+repos: [{'poky':
+ {'repourl':'git://git.yoctoproject.org/poky',
+ 'bbpriority':'1',
+ 'branch':'master'}}]
+steps: [{'SetDest':{}},
+ {'CheckOutLayers': {}},
+ {'RunPreamble': {}},
+ {'GetDistroVersion' : {'distro': 'poky'}},
+ {'CreateAutoConf': {'machine': 'qemux86-64', 'SDKMACHINE' : 'i686', 'distro': 'poky', 'atextappend' : '\nROOT_HOME = "/root"\nIMAGE_FSTYPES_forcevariable = "btrfs"\nKERNEL_FEATURES_append = " cfg/fs/btrfs"\n'}},
+ {'CreateBBLayersConf': {'buildprovider' : 'yocto'}},
+ {'BuildImages': {'images': 'core-image-minimal'}},
+ {'CreateAutoConf': {'machine': 'qemux86-64', 'SDKMACHINE' : 'i686', 'distro': 'poky', 'atextappend' : '\nDISTRO_FEATURES_append = " systemd"\nVIRTUAL-RUNTIME_init-manager = "systemd"\n'}},
+ {'BuildImages': {'images': 'core-image-sato'}},
+ {'RunSanityTests': {'images': 'core-image-sato'}},
+ {'CreateAutoConf': {'machine': 'qemux86-64', 'SDKMACHINE' : 'i686', 'distro': 'poky', 'atextappend' : '\nEXTRA_IMAGE_FEATURES = "debug-tweaks read-only-rootfs"\n'}},
+ {'BuildImages': {'images': 'core-image-sato'}}]
--
1.8.1.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [yocto-autobuilder][PATCH v2 2/2] nightly.conf, yoctoAB.conf: enable the new nightly-qa-extras buildset
2013-04-05 7:49 [yocto-autobuilder][PATCH v2 0/2] Add a new buildset Stefan Stanacar
2013-04-05 7:49 ` [yocto-autobuilder][PATCH v2 1/2] nightly-qa-extras.conf: add new buildset config Stefan Stanacar
@ 2013-04-05 7:49 ` Stefan Stanacar
2013-04-10 16:56 ` [yocto-autobuilder][PATCH v2 0/2] Add a new buildset Flanagan, Elizabeth
2 siblings, 0 replies; 4+ messages in thread
From: Stefan Stanacar @ 2013-04-05 7:49 UTC (permalink / raw)
To: yocto
Add the new buildset to the nightly target
Signed-off-by: Stefan Stanacar <stefanx.stanacar@intel.com>
---
buildset-config/nightly.conf | 2 +-
buildset-config/yoctoAB.conf | 3 ++-
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/buildset-config/nightly.conf b/buildset-config/nightly.conf
index 0b334ff..5b286f0 100644
--- a/buildset-config/nightly.conf
+++ b/buildset-config/nightly.conf
@@ -69,7 +69,7 @@ steps: [{'SetDest':{}},
'nightly-x32': {},
'nightly-x86-64': {}, 'nightly-x86-64-lsb': {},
'nightly-x86': {}, 'nightly-x86-lsb': {},
- 'poky-tiny': {}}}},
+ 'poky-tiny': {}, 'nightly-qa-extras': {}}}},
{'PrepPkgIndex' : {}},
{'BuildImages': {'images': 'package-index'}},
{'BuildImages': {'images': 'adt-installer'}},
diff --git a/buildset-config/yoctoAB.conf b/buildset-config/yoctoAB.conf
index 5f29400..a478ec7 100644
--- a/buildset-config/yoctoAB.conf
+++ b/buildset-config/yoctoAB.conf
@@ -4,4 +4,5 @@ order: ['nightly', 'eclipse-plugin', 'nightly-arm', 'nightly-arm-lsb', 'nightly-
'nightly-x86-64', 'nightly-x86-64-lsb', 'nightly-x86',
'nightly-x86-lsb', 'nightly-x32', 'nightly-multilib',
'nightly-world', 'nightly-non-gpl3', 'nightly-oecore',
- 'nightly-intel-gpl', 'poky-tiny', 'build-appliance']
+ 'nightly-intel-gpl', 'poky-tiny', 'build-appliance',
+ 'nightly-qa-extras']
--
1.8.1.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [yocto-autobuilder][PATCH v2 0/2] Add a new buildset
2013-04-05 7:49 [yocto-autobuilder][PATCH v2 0/2] Add a new buildset Stefan Stanacar
2013-04-05 7:49 ` [yocto-autobuilder][PATCH v2 1/2] nightly-qa-extras.conf: add new buildset config Stefan Stanacar
2013-04-05 7:49 ` [yocto-autobuilder][PATCH v2 2/2] nightly.conf, yoctoAB.conf: enable the new nightly-qa-extras buildset Stefan Stanacar
@ 2013-04-10 16:56 ` Flanagan, Elizabeth
2 siblings, 0 replies; 4+ messages in thread
From: Flanagan, Elizabeth @ 2013-04-10 16:56 UTC (permalink / raw)
To: Stefan Stanacar; +Cc: yocto@yoctoproject.org
I'm going to wait for 1.4 to come out before I pull this. Please keep
this around as we need it, but I don't want to mess around with what
gets built out until it's necessary.
-b
On Fri, Apr 5, 2013 at 12:49 AM, Stefan Stanacar
<stefanx.stanacar@intel.com> wrote:
> The following changes since commit a9434f623752818e10e703a613ef65586c435bbd:
>
> PublishArtifacts.py: poky-tiny deploy (2013-04-04 11:20:56 -0700)
>
> are available in the git repository at:
>
> git://git.yoctoproject.org/poky-contrib stefans/yab4
> http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=stefans/yab4
>
> Stefan Stanacar (2):
> nightly-qa-extras.conf: add new buildset config
> nightly.conf, yoctoAB.conf: enable the new nightly-qa-extras buildset
>
> buildset-config/nightly-qa-extras.conf | 18 ++++++++++++++++++
> buildset-config/nightly.conf | 2 +-
> buildset-config/yoctoAB.conf | 3 ++-
> 3 files changed, 21 insertions(+), 2 deletions(-)
> create mode 100644 buildset-config/nightly-qa-extras.conf
>
> --
> 1.8.1.4
>
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
--
Elizabeth Flanagan
Yocto Project
Build and Release
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-04-10 16:56 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-05 7:49 [yocto-autobuilder][PATCH v2 0/2] Add a new buildset Stefan Stanacar
2013-04-05 7:49 ` [yocto-autobuilder][PATCH v2 1/2] nightly-qa-extras.conf: add new buildset config Stefan Stanacar
2013-04-05 7:49 ` [yocto-autobuilder][PATCH v2 2/2] nightly.conf, yoctoAB.conf: enable the new nightly-qa-extras buildset Stefan Stanacar
2013-04-10 16:56 ` [yocto-autobuilder][PATCH v2 0/2] Add a new buildset Flanagan, Elizabeth
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.