* nightly-world-lsb.conf: Do world builds for poky-lsb
@ 2015-03-24 22:41 Graydon, Tracy
2015-03-24 21:51 ` Randy Witt
0 siblings, 1 reply; 3+ messages in thread
From: Graydon, Tracy @ 2015-03-24 22:41 UTC (permalink / raw)
To: yocto
[YOCTO #7261]
Do world builds for poky-lsb. This patch adds the new nightly-world-lsb buildset
to fix bug #7261. Also added it to the normal nightly.conf trigger
and yoctoAB.conf.
Signed-off-by: Graydon, Tracy <tracy.graydon@intel.com>
---
buildset-config.controller/nightly-world-lsb.conf | 22 ++++++++++++++++++++++
buildset-config.controller/nightly.conf | 4 +---
buildset-config.controller/yoctoAB.conf | 6 +++---
3 files changed, 26 insertions(+), 6 deletions(-)
create mode 100644 buildset-config.controller/nightly-world-lsb.conf
diff --git a/buildset-config.controller/nightly-world-lsb.conf b/buildset-config.controller/nightly-world-lsb.conf
new file mode 100644
index 0000000..e9782a9
--- /dev/null
+++ b/buildset-config.controller/nightly-world-lsb.conf
@@ -0,0 +1,22 @@
+[nightly-world-lsb]
+builders: 'example-worker'
+repos: [{'poky':
+ {'repourl':'git://git.yoctoproject.org/poky',
+ 'layerversion':{'core':'meta', 'yoctobsp':'meta-yocto-bsp'},
+ 'branch':'master'}},
+ {'meta-qt3':
+ {'repourl':'git://git.yoctoproject.org/meta-qt3',
+ 'branch':'master'}}]
+steps: [{'SetDest':{}},
+ {'CheckOutLayers': {}},
+ {'RunPreamble': {}},
+ {'GetDistroVersion' : {'distro': 'poky'}},
+ {'CreateAutoConf': {'machine': 'qemux86', 'SDKMACHINE' : 'x86_64',
+ 'buildhistory' : False, 'multilib': True,
+ 'distro': 'poky-lsb'}},
+ {'CreateBBLayersConf': {'buildprovider' : 'yocto'}},
+ {'BuildImages': {'images': 'world'}},
+ {'SendErrorReport': {}},
+ {'UploadToasterEventlog': {}},
+ {'PublishArtifacts': {'artifacts': ['ipk', 'rpm', 'deb']}}]
+
diff --git a/buildset-config.controller/nightly.conf b/buildset-config.controller/nightly.conf
index e8498f1..e422ede 100644
--- a/buildset-config.controller/nightly.conf
+++ b/buildset-config.controller/nightly.conf
@@ -75,10 +75,8 @@ steps: [{'SetDest':{}},
{'BuildImages': {'images': 'universe -c fetch'}},
{'TriggerBuilds': {'schedulerName': 'main-build', 'waitForFinish': 'True',
'schedulerNames': {'minnow': {}, 'minnow-lsb': {},
- 'nightly-arm': {}, 'nightly-arm-lsb': {},
'nightly-fsl-arm': {}, 'nightly-fsl-arm-lsb': {},
'nightly-fsl-ppc': {}, 'nightly-fsl-ppc-lsb': {},
- 'nightly-mips': {}, 'nightly-mips-lsb': {},
'nightly-multilib': {}, 'nightly-x32': {},
'nightly-ppc': {}, 'nightly-ppc-lsb': {},
'nightly-x86-64': {}, 'nightly-x86-64-lsb': {},
@@ -87,7 +85,7 @@ steps: [{'SetDest':{}},
'schedulerNames_nowait' : {'build-appliance': {},
'eclipse-plugin-kepler': {}, 'eclipse-plugin-juno': {},
'nightly-non-gpl3': {}, 'nightly-oecore': {},
- 'nightly-world':{}, 'nightly-intel-gpl': {},
+ 'nightly-world':{}, 'nightly-world-lsb':{}, 'nightly-intel-gpl': {},
'poky-tiny': {}, 'buildtools': {},
'nightly-qa-systemd': {}, 'nightly-qa-extras': {},
'nightly-qa-logrotate': {}, 'nightly-qa-pam': {},
diff --git a/buildset-config.controller/yoctoAB.conf b/buildset-config.controller/yoctoAB.conf
index 9a07512..c087628 100644
--- a/buildset-config.controller/yoctoAB.conf
+++ b/buildset-config.controller/yoctoAB.conf
@@ -1,10 +1,10 @@
[BuildSets]
order: ['nightly', 'eclipse-plugin-juno',
'eclipse-plugin-kepler', 'eclipse-plugin-luna',
- 'nightly-arm', 'nightly-arm-lsb', 'nightly-mips',
- 'nightly-mips-lsb', 'nightly-ppc', 'nightly-ppc-lsb',
+ 'nightly-ppc', 'nightly-ppc-lsb',
'nightly-x86-64', 'nightly-x86-64-lsb', 'nightly-x86',
'nightly-x86-lsb', 'nightly-x32', 'nightly-multilib',
- 'nightly-world', 'nightly-non-gpl3', 'nightly-oecore',
+ 'nightly-world', 'nightly-world-lsb',
+ 'nightly-non-gpl3', 'nightly-oecore',
'nightly-intel-gpl', 'poky-tiny', 'build-appliance',
'nightly-qa-extras', 'nightly-qa-systemd']
--
1.9.3
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: nightly-world-lsb.conf: Do world builds for poky-lsb
2015-03-24 22:41 nightly-world-lsb.conf: Do world builds for poky-lsb Graydon, Tracy
@ 2015-03-24 21:51 ` Randy Witt
2015-03-24 22:15 ` Graydon, Tracy
0 siblings, 1 reply; 3+ messages in thread
From: Randy Witt @ 2015-03-24 21:51 UTC (permalink / raw)
To: Graydon, Tracy, yocto
On 03/24/2015 03:41 PM, Graydon, Tracy wrote:
> [YOCTO #7261]
>
> Do world builds for poky-lsb. This patch adds the new nightly-world-lsb buildset
> to fix bug #7261. Also added it to the normal nightly.conf trigger
> and yoctoAB.conf.
>
> Signed-off-by: Graydon, Tracy <tracy.graydon@intel.com>
> ---
> buildset-config.controller/nightly-world-lsb.conf | 22 ++++++++++++++++++++++
> buildset-config.controller/nightly.conf | 4 +---
> buildset-config.controller/yoctoAB.conf | 6 +++---
> 3 files changed, 26 insertions(+), 6 deletions(-)
> create mode 100644 buildset-config.controller/nightly-world-lsb.conf
>
> diff --git a/buildset-config.controller/nightly-world-lsb.conf b/buildset-config.controller/nightly-world-lsb.conf
> new file mode 100644
> index 0000000..e9782a9
> --- /dev/null
> +++ b/buildset-config.controller/nightly-world-lsb.conf
> @@ -0,0 +1,22 @@
> +[nightly-world-lsb]
> +builders: 'example-worker'
> +repos: [{'poky':
> + {'repourl':'git://git.yoctoproject.org/poky',
> + 'layerversion':{'core':'meta', 'yoctobsp':'meta-yocto-bsp'},
> + 'branch':'master'}},
> + {'meta-qt3':
> + {'repourl':'git://git.yoctoproject.org/meta-qt3',
> + 'branch':'master'}}]
> +steps: [{'SetDest':{}},
> + {'CheckOutLayers': {}},
> + {'RunPreamble': {}},
> + {'GetDistroVersion' : {'distro': 'poky'}},
> + {'CreateAutoConf': {'machine': 'qemux86', 'SDKMACHINE' : 'x86_64',
> + 'buildhistory' : False, 'multilib': True,
> + 'distro': 'poky-lsb'}},
> + {'CreateBBLayersConf': {'buildprovider' : 'yocto'}},
> + {'BuildImages': {'images': 'world'}},
> + {'SendErrorReport': {}},
> + {'UploadToasterEventlog': {}},
> + {'PublishArtifacts': {'artifacts': ['ipk', 'rpm', 'deb']}}]
> +
> diff --git a/buildset-config.controller/nightly.conf b/buildset-config.controller/nightly.conf
> index e8498f1..e422ede 100644
> --- a/buildset-config.controller/nightly.conf
> +++ b/buildset-config.controller/nightly.conf
> @@ -75,10 +75,8 @@ steps: [{'SetDest':{}},
> {'BuildImages': {'images': 'universe -c fetch'}},
> {'TriggerBuilds': {'schedulerName': 'main-build', 'waitForFinish': 'True',
> 'schedulerNames': {'minnow': {}, 'minnow-lsb': {},
> - 'nightly-arm': {}, 'nightly-arm-lsb': {},
> 'nightly-fsl-arm': {}, 'nightly-fsl-arm-lsb': {},
> 'nightly-fsl-ppc': {}, 'nightly-fsl-ppc-lsb': {},
> - 'nightly-mips': {}, 'nightly-mips-lsb': {},
I'll admit that I'm not that familiar with the autobuilder, but this looks like
some builds are being turned off, but the commit message doesn't mention that.
> 'nightly-multilib': {}, 'nightly-x32': {},
> 'nightly-ppc': {}, 'nightly-ppc-lsb': {},
> 'nightly-x86-64': {}, 'nightly-x86-64-lsb': {},
> @@ -87,7 +85,7 @@ steps: [{'SetDest':{}},
> 'schedulerNames_nowait' : {'build-appliance': {},
> 'eclipse-plugin-kepler': {}, 'eclipse-plugin-juno': {},
> 'nightly-non-gpl3': {}, 'nightly-oecore': {},
> - 'nightly-world':{}, 'nightly-intel-gpl': {},
> + 'nightly-world':{}, 'nightly-world-lsb':{}, 'nightly-intel-gpl': {},
> 'poky-tiny': {}, 'buildtools': {},
> 'nightly-qa-systemd': {}, 'nightly-qa-extras': {},
> 'nightly-qa-logrotate': {}, 'nightly-qa-pam': {},
> diff --git a/buildset-config.controller/yoctoAB.conf b/buildset-config.controller/yoctoAB.conf
> index 9a07512..c087628 100644
> --- a/buildset-config.controller/yoctoAB.conf
> +++ b/buildset-config.controller/yoctoAB.conf
> @@ -1,10 +1,10 @@
> [BuildSets]
> order: ['nightly', 'eclipse-plugin-juno',
> 'eclipse-plugin-kepler', 'eclipse-plugin-luna',
> - 'nightly-arm', 'nightly-arm-lsb', 'nightly-mips',
> - 'nightly-mips-lsb', 'nightly-ppc', 'nightly-ppc-lsb',
> + 'nightly-ppc', 'nightly-ppc-lsb',
> 'nightly-x86-64', 'nightly-x86-64-lsb', 'nightly-x86',
> 'nightly-x86-lsb', 'nightly-x32', 'nightly-multilib',
> - 'nightly-world', 'nightly-non-gpl3', 'nightly-oecore',
> + 'nightly-world', 'nightly-world-lsb',
> + 'nightly-non-gpl3', 'nightly-oecore',
> 'nightly-intel-gpl', 'poky-tiny', 'build-appliance',
> 'nightly-qa-extras', 'nightly-qa-systemd']
>
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: nightly-world-lsb.conf: Do world builds for poky-lsb
2015-03-24 21:51 ` Randy Witt
@ 2015-03-24 22:15 ` Graydon, Tracy
0 siblings, 0 replies; 3+ messages in thread
From: Graydon, Tracy @ 2015-03-24 22:15 UTC (permalink / raw)
To: Randy Witt, yocto@yoctoproject.org
Crap. You are right. There is a change in here that shouldn¹t be. Fixing
that.
Thank you for catching that. I was on the wrong local branch.
-t
On 03/24/15, 2:51 PM, "Randy Witt" <randy.e.witt@linux.intel.com> wrote:
>On 03/24/2015 03:41 PM, Graydon, Tracy wrote:
>> [YOCTO #7261]
>>
>> Do world builds for poky-lsb. This patch adds the new nightly-world-lsb
>>buildset
>> to fix bug #7261. Also added it to the normal nightly.conf trigger
>> and yoctoAB.conf.
>>
>> Signed-off-by: Graydon, Tracy <tracy.graydon@intel.com>
>> ---
>> buildset-config.controller/nightly-world-lsb.conf | 22
>>++++++++++++++++++++++
>> buildset-config.controller/nightly.conf | 4 +---
>> buildset-config.controller/yoctoAB.conf | 6 +++---
>> 3 files changed, 26 insertions(+), 6 deletions(-)
>> create mode 100644 buildset-config.controller/nightly-world-lsb.conf
>>
>> diff --git a/buildset-config.controller/nightly-world-lsb.conf
>>b/buildset-config.controller/nightly-world-lsb.conf
>> new file mode 100644
>> index 0000000..e9782a9
>> --- /dev/null
>> +++ b/buildset-config.controller/nightly-world-lsb.conf
>> @@ -0,0 +1,22 @@
>> +[nightly-world-lsb]
>> +builders: 'example-worker'
>> +repos: [{'poky':
>> + {'repourl':'git://git.yoctoproject.org/poky',
>> + 'layerversion':{'core':'meta',
>>'yoctobsp':'meta-yocto-bsp'},
>> + 'branch':'master'}},
>> + {'meta-qt3':
>> + {'repourl':'git://git.yoctoproject.org/meta-qt3',
>> + 'branch':'master'}}]
>> +steps: [{'SetDest':{}},
>> + {'CheckOutLayers': {}},
>> + {'RunPreamble': {}},
>> + {'GetDistroVersion' : {'distro': 'poky'}},
>> + {'CreateAutoConf': {'machine': 'qemux86', 'SDKMACHINE' :
>>'x86_64',
>> + 'buildhistory' : False, 'multilib': True,
>> + 'distro': 'poky-lsb'}},
>> + {'CreateBBLayersConf': {'buildprovider' : 'yocto'}},
>> + {'BuildImages': {'images': 'world'}},
>> + {'SendErrorReport': {}},
>> + {'UploadToasterEventlog': {}},
>> + {'PublishArtifacts': {'artifacts': ['ipk', 'rpm', 'deb']}}]
>> +
>> diff --git a/buildset-config.controller/nightly.conf
>>b/buildset-config.controller/nightly.conf
>> index e8498f1..e422ede 100644
>> --- a/buildset-config.controller/nightly.conf
>> +++ b/buildset-config.controller/nightly.conf
>> @@ -75,10 +75,8 @@ steps: [{'SetDest':{}},
>> {'BuildImages': {'images': 'universe -c fetch'}},
>> {'TriggerBuilds': {'schedulerName': 'main-build',
>>'waitForFinish': 'True',
>> 'schedulerNames': {'minnow': {},
>>'minnow-lsb': {},
>> - 'nightly-arm': {}, 'nightly-arm-lsb': {},
>> 'nightly-fsl-arm': {},
>>'nightly-fsl-arm-lsb': {},
>> 'nightly-fsl-ppc': {},
>>'nightly-fsl-ppc-lsb': {},
>> - 'nightly-mips': {}, 'nightly-mips-lsb': {},
>
>I'll admit that I'm not that familiar with the autobuilder, but this
>looks like
>some builds are being turned off, but the commit message doesn't mention
>that.
>
>> 'nightly-multilib': {}, 'nightly-x32': {},
>> 'nightly-ppc': {}, 'nightly-ppc-lsb': {},
>> 'nightly-x86-64': {},
>>'nightly-x86-64-lsb': {},
>> @@ -87,7 +85,7 @@ steps: [{'SetDest':{}},
>> 'schedulerNames_nowait' :
>>{'build-appliance': {},
>> 'eclipse-plugin-kepler': {},
>>'eclipse-plugin-juno': {},
>> 'nightly-non-gpl3': {}, 'nightly-oecore':
>>{},
>> - 'nightly-world':{}, 'nightly-intel-gpl': {},
>> + 'nightly-world':{}, 'nightly-world-lsb':{},
>>'nightly-intel-gpl': {},
>> 'poky-tiny': {}, 'buildtools': {},
>> 'nightly-qa-systemd': {},
>>'nightly-qa-extras': {},
>> 'nightly-qa-logrotate': {},
>>'nightly-qa-pam': {},
>> diff --git a/buildset-config.controller/yoctoAB.conf
>>b/buildset-config.controller/yoctoAB.conf
>> index 9a07512..c087628 100644
>> --- a/buildset-config.controller/yoctoAB.conf
>> +++ b/buildset-config.controller/yoctoAB.conf
>> @@ -1,10 +1,10 @@
>> [BuildSets]
>> order: ['nightly', 'eclipse-plugin-juno',
>> 'eclipse-plugin-kepler', 'eclipse-plugin-luna',
>> - 'nightly-arm', 'nightly-arm-lsb', 'nightly-mips',
>> - 'nightly-mips-lsb', 'nightly-ppc', 'nightly-ppc-lsb',
>> + 'nightly-ppc', 'nightly-ppc-lsb',
>> 'nightly-x86-64', 'nightly-x86-64-lsb', 'nightly-x86',
>> 'nightly-x86-lsb', 'nightly-x32', 'nightly-multilib',
>> - 'nightly-world', 'nightly-non-gpl3', 'nightly-oecore',
>> + 'nightly-world', 'nightly-world-lsb',
>> + 'nightly-non-gpl3', 'nightly-oecore',
>> 'nightly-intel-gpl', 'poky-tiny', 'build-appliance',
>> 'nightly-qa-extras', 'nightly-qa-systemd']
>>
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-03-24 22:15 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-24 22:41 nightly-world-lsb.conf: Do world builds for poky-lsb Graydon, Tracy
2015-03-24 21:51 ` Randy Witt
2015-03-24 22:15 ` Graydon, Tracy
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.