All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] shippable.yml: Remove jobs duplicated on Gitlab-CI
@ 2021-01-08 14:51 Philippe Mathieu-Daudé
  2021-01-08 15:14 ` Paolo Bonzini
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Philippe Mathieu-Daudé @ 2021-01-08 14:51 UTC (permalink / raw)
  To: qemu-devel
  Cc: Fam Zheng, Thomas Huth, Daniel P . Berrangé,
	Philippe Mathieu-Daudé, Philippe Mathieu-Daudé,
	Paolo Bonzini, Alex Bennée

The following jobs are duplicated on Gitlab-CI since commit
6bcb5fc0f7a ("gitlab-ci: Add cross-compiling build tests"):

- IMAGE=debian-armel-cross

  TARGET_LIST=arm-softmmu               -> cross-armel-system
  TARGET_LIST=arm-linux-user            -> cross-armel-user
  TARGET_LIST=armeb-linux-user          -> cross-armel-user

- IMAGE=debian-armhf-cross

  TARGET_LIST=arm-softmmu               -> cross-armhf-system
  TARGET_LIST=arm-linux-user            -> cross-armhf-user
  TARGET_LIST=armeb-linux-user          -> cross-armhf-user

- IMAGE=debian-arm64-cross

  TARGET_LIST=aarch64-softmmu           -> cross-arm64-system
  TARGET_LIST=aarch64-linux-user        -> cross-arm64-user

- IMAGE=debian-s390x-cross

  TARGET_LIST=s390x-softmmu             -> cross-s390x-system
  TARGET_LIST=s390x-linux-user          -> cross-s390x-user

- IMAGE=debian-mips-cross

  TARGET_LIST=mipsel-linux-user         -> cross-mips-user

- IMAGE=debian-mips64el-cross

  TARGET_LIST=mips64el-softmmu          -> cross-mips64el-system
  TARGET_LIST=mips64el-linux-user       -> cross-mips64el-user

- IMAGE=debian-ppc64el-cross

  TARGET_LIST=ppc64-softmmu             -> cross-ppc64el-system
  TARGET_LIST=ppc64-linux-user          -> cross-ppc64el-user
  TARGET_LIST=ppc64abi32-linux-user     -> cross-ppc64el-user

Remove them from Shippable CI.

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
---
 .shippable.yml | 14 +-------------
 1 file changed, 1 insertion(+), 13 deletions(-)

diff --git a/.shippable.yml b/.shippable.yml
index 14350e6de8a..97bfa2a0f38 100644
--- a/.shippable.yml
+++ b/.shippable.yml
@@ -7,20 +7,8 @@ env:
   matrix:
     - IMAGE=debian-amd64
       TARGET_LIST=x86_64-softmmu,x86_64-linux-user
-    - IMAGE=debian-armel-cross
-      TARGET_LIST=arm-softmmu,arm-linux-user,armeb-linux-user
-    - IMAGE=debian-armhf-cross
-      TARGET_LIST=arm-softmmu,arm-linux-user,armeb-linux-user
-    - IMAGE=debian-arm64-cross
-      TARGET_LIST=aarch64-softmmu,aarch64-linux-user
-    - IMAGE=debian-s390x-cross
-      TARGET_LIST=s390x-softmmu,s390x-linux-user
     - IMAGE=debian-mips-cross
-      TARGET_LIST=mips-softmmu,mipsel-linux-user
-    - IMAGE=debian-mips64el-cross
-      TARGET_LIST=mips64el-softmmu,mips64el-linux-user
-    - IMAGE=debian-ppc64el-cross
-      TARGET_LIST=ppc64-softmmu,ppc64-linux-user,ppc64abi32-linux-user
+      TARGET_LIST=mips-softmmu
 build:
   pre_ci_boot:
     image_name: registry.gitlab.com/qemu-project/qemu/qemu/${IMAGE}
-- 
2.26.2



^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH] shippable.yml: Remove jobs duplicated on Gitlab-CI
  2021-01-08 14:51 [PATCH] shippable.yml: Remove jobs duplicated on Gitlab-CI Philippe Mathieu-Daudé
@ 2021-01-08 15:14 ` Paolo Bonzini
  2021-01-08 15:21   ` Daniel P. Berrangé
  2021-01-08 16:42 ` Alex Bennée
  2021-01-12  9:34 ` Alex Bennée
  2 siblings, 1 reply; 7+ messages in thread
From: Paolo Bonzini @ 2021-01-08 15:14 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé, qemu-devel
  Cc: Fam Zheng, Daniel P . Berrangé,
	Thomas Huth, Alex Bennée, Philippe Mathieu-Daudé

On 08/01/21 15:51, Philippe Mathieu-Daudé wrote:
> The following jobs are duplicated on Gitlab-CI since commit
> 6bcb5fc0f7a ("gitlab-ci: Add cross-compiling build tests"):
> 
> - IMAGE=debian-armel-cross
> 
>    TARGET_LIST=arm-softmmu               -> cross-armel-system
>    TARGET_LIST=arm-linux-user            -> cross-armel-user
>    TARGET_LIST=armeb-linux-user          -> cross-armel-user
> 
> - IMAGE=debian-armhf-cross
> 
>    TARGET_LIST=arm-softmmu               -> cross-armhf-system
>    TARGET_LIST=arm-linux-user            -> cross-armhf-user
>    TARGET_LIST=armeb-linux-user          -> cross-armhf-user
> 
> - IMAGE=debian-arm64-cross
> 
>    TARGET_LIST=aarch64-softmmu           -> cross-arm64-system
>    TARGET_LIST=aarch64-linux-user        -> cross-arm64-user
> 
> - IMAGE=debian-s390x-cross
> 
>    TARGET_LIST=s390x-softmmu             -> cross-s390x-system
>    TARGET_LIST=s390x-linux-user          -> cross-s390x-user
> 
> - IMAGE=debian-mips-cross
> 
>    TARGET_LIST=mipsel-linux-user         -> cross-mips-user
> 
> - IMAGE=debian-mips64el-cross
> 
>    TARGET_LIST=mips64el-softmmu          -> cross-mips64el-system
>    TARGET_LIST=mips64el-linux-user       -> cross-mips64el-user
> 
> - IMAGE=debian-ppc64el-cross
> 
>    TARGET_LIST=ppc64-softmmu             -> cross-ppc64el-system
>    TARGET_LIST=ppc64-linux-user          -> cross-ppc64el-user
>    TARGET_LIST=ppc64abi32-linux-user     -> cross-ppc64el-user
> 
> Remove them from Shippable CI.
> 
> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
> ---
>   .shippable.yml | 14 +-------------
>   1 file changed, 1 insertion(+), 13 deletions(-)
> 
> diff --git a/.shippable.yml b/.shippable.yml
> index 14350e6de8a..97bfa2a0f38 100644
> --- a/.shippable.yml
> +++ b/.shippable.yml
> @@ -7,20 +7,8 @@ env:
>     matrix:
>       - IMAGE=debian-amd64
>         TARGET_LIST=x86_64-softmmu,x86_64-linux-user
> -    - IMAGE=debian-armel-cross
> -      TARGET_LIST=arm-softmmu,arm-linux-user,armeb-linux-user
> -    - IMAGE=debian-armhf-cross
> -      TARGET_LIST=arm-softmmu,arm-linux-user,armeb-linux-user
> -    - IMAGE=debian-arm64-cross
> -      TARGET_LIST=aarch64-softmmu,aarch64-linux-user
> -    - IMAGE=debian-s390x-cross
> -      TARGET_LIST=s390x-softmmu,s390x-linux-user
>       - IMAGE=debian-mips-cross
> -      TARGET_LIST=mips-softmmu,mipsel-linux-user
> -    - IMAGE=debian-mips64el-cross
> -      TARGET_LIST=mips64el-softmmu,mips64el-linux-user
> -    - IMAGE=debian-ppc64el-cross
> -      TARGET_LIST=ppc64-softmmu,ppc64-linux-user,ppc64abi32-linux-user
> +      TARGET_LIST=mips-softmmu

The debian-mips-cross/mips-softmmu pair (and also mipsel-softmmu) is 
currently excluded by Gitlab's cross-mips-system, is there a reason for 
that?  If we add it there, we can just remove shippable altogether.

Paolo



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] shippable.yml: Remove jobs duplicated on Gitlab-CI
  2021-01-08 15:14 ` Paolo Bonzini
@ 2021-01-08 15:21   ` Daniel P. Berrangé
  2021-01-08 15:36     ` Paolo Bonzini
  0 siblings, 1 reply; 7+ messages in thread
From: Daniel P. Berrangé @ 2021-01-08 15:21 UTC (permalink / raw)
  To: Paolo Bonzini
  Cc: Fam Zheng, Thomas Huth, Alex Bennée,
	Philippe Mathieu-Daudé,
	qemu-devel, Philippe Mathieu-Daudé

On Fri, Jan 08, 2021 at 04:14:30PM +0100, Paolo Bonzini wrote:
> On 08/01/21 15:51, Philippe Mathieu-Daudé wrote:
> > The following jobs are duplicated on Gitlab-CI since commit
> > 6bcb5fc0f7a ("gitlab-ci: Add cross-compiling build tests"):
> > 
> > - IMAGE=debian-armel-cross
> > 
> >    TARGET_LIST=arm-softmmu               -> cross-armel-system
> >    TARGET_LIST=arm-linux-user            -> cross-armel-user
> >    TARGET_LIST=armeb-linux-user          -> cross-armel-user
> > 
> > - IMAGE=debian-armhf-cross
> > 
> >    TARGET_LIST=arm-softmmu               -> cross-armhf-system
> >    TARGET_LIST=arm-linux-user            -> cross-armhf-user
> >    TARGET_LIST=armeb-linux-user          -> cross-armhf-user
> > 
> > - IMAGE=debian-arm64-cross
> > 
> >    TARGET_LIST=aarch64-softmmu           -> cross-arm64-system
> >    TARGET_LIST=aarch64-linux-user        -> cross-arm64-user
> > 
> > - IMAGE=debian-s390x-cross
> > 
> >    TARGET_LIST=s390x-softmmu             -> cross-s390x-system
> >    TARGET_LIST=s390x-linux-user          -> cross-s390x-user
> > 
> > - IMAGE=debian-mips-cross
> > 
> >    TARGET_LIST=mipsel-linux-user         -> cross-mips-user
> > 
> > - IMAGE=debian-mips64el-cross
> > 
> >    TARGET_LIST=mips64el-softmmu          -> cross-mips64el-system
> >    TARGET_LIST=mips64el-linux-user       -> cross-mips64el-user
> > 
> > - IMAGE=debian-ppc64el-cross
> > 
> >    TARGET_LIST=ppc64-softmmu             -> cross-ppc64el-system
> >    TARGET_LIST=ppc64-linux-user          -> cross-ppc64el-user
> >    TARGET_LIST=ppc64abi32-linux-user     -> cross-ppc64el-user
> > 
> > Remove them from Shippable CI.
> > 
> > Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
> > ---
> >   .shippable.yml | 14 +-------------
> >   1 file changed, 1 insertion(+), 13 deletions(-)
> > 
> > diff --git a/.shippable.yml b/.shippable.yml
> > index 14350e6de8a..97bfa2a0f38 100644
> > --- a/.shippable.yml
> > +++ b/.shippable.yml
> > @@ -7,20 +7,8 @@ env:
> >     matrix:
> >       - IMAGE=debian-amd64
> >         TARGET_LIST=x86_64-softmmu,x86_64-linux-user
> > -    - IMAGE=debian-armel-cross
> > -      TARGET_LIST=arm-softmmu,arm-linux-user,armeb-linux-user
> > -    - IMAGE=debian-armhf-cross
> > -      TARGET_LIST=arm-softmmu,arm-linux-user,armeb-linux-user
> > -    - IMAGE=debian-arm64-cross
> > -      TARGET_LIST=aarch64-softmmu,aarch64-linux-user
> > -    - IMAGE=debian-s390x-cross
> > -      TARGET_LIST=s390x-softmmu,s390x-linux-user
> >       - IMAGE=debian-mips-cross
> > -      TARGET_LIST=mips-softmmu,mipsel-linux-user
> > -    - IMAGE=debian-mips64el-cross
> > -      TARGET_LIST=mips64el-softmmu,mips64el-linux-user
> > -    - IMAGE=debian-ppc64el-cross
> > -      TARGET_LIST=ppc64-softmmu,ppc64-linux-user,ppc64abi32-linux-user
> > +      TARGET_LIST=mips-softmmu
> 
> The debian-mips-cross/mips-softmmu pair (and also mipsel-softmmu) is
> currently excluded by Gitlab's cross-mips-system, is there a reason for
> that?  If we add it there, we can just remove shippable altogether.

Some softmmu targets were disable to keep the build time under control.

We could enable a different subset of targets for each cross host arch,
so that overall we get representative coverage of the full set.

Regards,
Daniel
-- 
|: https://berrange.com      -o-    https://www.flickr.com/photos/dberrange :|
|: https://libvirt.org         -o-            https://fstop138.berrange.com :|
|: https://entangle-photo.org    -o-    https://www.instagram.com/dberrange :|



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] shippable.yml: Remove jobs duplicated on Gitlab-CI
  2021-01-08 15:21   ` Daniel P. Berrangé
@ 2021-01-08 15:36     ` Paolo Bonzini
  2021-01-10 11:00       ` Philippe Mathieu-Daudé
  0 siblings, 1 reply; 7+ messages in thread
From: Paolo Bonzini @ 2021-01-08 15:36 UTC (permalink / raw)
  To: Daniel P. Berrangé
  Cc: Fam Zheng, Thomas Huth, Alex Bennée,
	Philippe Mathieu-Daudé,
	qemu-devel, Philippe Mathieu-Daudé

On 08/01/21 16:21, Daniel P. Berrangé wrote:
> On Fri, Jan 08, 2021 at 04:14:30PM +0100, Paolo Bonzini wrote:
>> On 08/01/21 15:51, Philippe Mathieu-Daudé wrote:
>>> The following jobs are duplicated on Gitlab-CI since commit
>>> 6bcb5fc0f7a ("gitlab-ci: Add cross-compiling build tests"):
>>>
>>> - IMAGE=debian-armel-cross
>>>
>>>     TARGET_LIST=arm-softmmu               -> cross-armel-system
>>>     TARGET_LIST=arm-linux-user            -> cross-armel-user
>>>     TARGET_LIST=armeb-linux-user          -> cross-armel-user
>>>
>>> - IMAGE=debian-armhf-cross
>>>
>>>     TARGET_LIST=arm-softmmu               -> cross-armhf-system
>>>     TARGET_LIST=arm-linux-user            -> cross-armhf-user
>>>     TARGET_LIST=armeb-linux-user          -> cross-armhf-user
>>>
>>> - IMAGE=debian-arm64-cross
>>>
>>>     TARGET_LIST=aarch64-softmmu           -> cross-arm64-system
>>>     TARGET_LIST=aarch64-linux-user        -> cross-arm64-user
>>>
>>> - IMAGE=debian-s390x-cross
>>>
>>>     TARGET_LIST=s390x-softmmu             -> cross-s390x-system
>>>     TARGET_LIST=s390x-linux-user          -> cross-s390x-user
>>>
>>> - IMAGE=debian-mips-cross
>>>
>>>     TARGET_LIST=mipsel-linux-user         -> cross-mips-user
>>>
>>> - IMAGE=debian-mips64el-cross
>>>
>>>     TARGET_LIST=mips64el-softmmu          -> cross-mips64el-system
>>>     TARGET_LIST=mips64el-linux-user       -> cross-mips64el-user
>>>
>>> - IMAGE=debian-ppc64el-cross
>>>
>>>     TARGET_LIST=ppc64-softmmu             -> cross-ppc64el-system
>>>     TARGET_LIST=ppc64-linux-user          -> cross-ppc64el-user
>>>     TARGET_LIST=ppc64abi32-linux-user     -> cross-ppc64el-user
>>>
>>> Remove them from Shippable CI.
>>>
>>> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
>>> ---
>>>    .shippable.yml | 14 +-------------
>>>    1 file changed, 1 insertion(+), 13 deletions(-)
>>>
>>> diff --git a/.shippable.yml b/.shippable.yml
>>> index 14350e6de8a..97bfa2a0f38 100644
>>> --- a/.shippable.yml
>>> +++ b/.shippable.yml
>>> @@ -7,20 +7,8 @@ env:
>>>      matrix:
>>>        - IMAGE=debian-amd64
>>>          TARGET_LIST=x86_64-softmmu,x86_64-linux-user
>>> -    - IMAGE=debian-armel-cross
>>> -      TARGET_LIST=arm-softmmu,arm-linux-user,armeb-linux-user
>>> -    - IMAGE=debian-armhf-cross
>>> -      TARGET_LIST=arm-softmmu,arm-linux-user,armeb-linux-user
>>> -    - IMAGE=debian-arm64-cross
>>> -      TARGET_LIST=aarch64-softmmu,aarch64-linux-user
>>> -    - IMAGE=debian-s390x-cross
>>> -      TARGET_LIST=s390x-softmmu,s390x-linux-user
>>>        - IMAGE=debian-mips-cross
>>> -      TARGET_LIST=mips-softmmu,mipsel-linux-user
>>> -    - IMAGE=debian-mips64el-cross
>>> -      TARGET_LIST=mips64el-softmmu,mips64el-linux-user
>>> -    - IMAGE=debian-ppc64el-cross
>>> -      TARGET_LIST=ppc64-softmmu,ppc64-linux-user,ppc64abi32-linux-user
>>> +      TARGET_LIST=mips-softmmu
>>
>> The debian-mips-cross/mips-softmmu pair (and also mipsel-softmmu) is
>> currently excluded by Gitlab's cross-mips-system, is there a reason for
>> that?  If we add it there, we can just remove shippable altogether.
> 
> Some softmmu targets were disable to keep the build time under control.
> 
> We could enable a different subset of targets for each cross host arch,
> so that overall we get representative coverage of the full set.

Right, but at least KVM targets ought to be included in their own cross 
host.

Paolo



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] shippable.yml: Remove jobs duplicated on Gitlab-CI
  2021-01-08 14:51 [PATCH] shippable.yml: Remove jobs duplicated on Gitlab-CI Philippe Mathieu-Daudé
  2021-01-08 15:14 ` Paolo Bonzini
@ 2021-01-08 16:42 ` Alex Bennée
  2021-01-12  9:34 ` Alex Bennée
  2 siblings, 0 replies; 7+ messages in thread
From: Alex Bennée @ 2021-01-08 16:42 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé
  Cc: Fam Zheng, Thomas Huth, Daniel P . Berrangé,
	qemu-devel, Paolo Bonzini, Philippe Mathieu-Daudé


Philippe Mathieu-Daudé <f4bug@amsat.org> writes:

> The following jobs are duplicated on Gitlab-CI since commit
> 6bcb5fc0f7a ("gitlab-ci: Add cross-compiling build tests"):
>
> - IMAGE=debian-armel-cross
>
>   TARGET_LIST=arm-softmmu               -> cross-armel-system
>   TARGET_LIST=arm-linux-user            -> cross-armel-user
>   TARGET_LIST=armeb-linux-user          -> cross-armel-user
>
> - IMAGE=debian-armhf-cross
>
>   TARGET_LIST=arm-softmmu               -> cross-armhf-system
>   TARGET_LIST=arm-linux-user            -> cross-armhf-user
>   TARGET_LIST=armeb-linux-user          -> cross-armhf-user
>
> - IMAGE=debian-arm64-cross
>
>   TARGET_LIST=aarch64-softmmu           -> cross-arm64-system
>   TARGET_LIST=aarch64-linux-user        -> cross-arm64-user
>
> - IMAGE=debian-s390x-cross
>
>   TARGET_LIST=s390x-softmmu             -> cross-s390x-system
>   TARGET_LIST=s390x-linux-user          -> cross-s390x-user
>
> - IMAGE=debian-mips-cross
>
>   TARGET_LIST=mipsel-linux-user         -> cross-mips-user
>
> - IMAGE=debian-mips64el-cross
>
>   TARGET_LIST=mips64el-softmmu          -> cross-mips64el-system
>   TARGET_LIST=mips64el-linux-user       -> cross-mips64el-user
>
> - IMAGE=debian-ppc64el-cross
>
>   TARGET_LIST=ppc64-softmmu             -> cross-ppc64el-system
>   TARGET_LIST=ppc64-linux-user          -> cross-ppc64el-user
>   TARGET_LIST=ppc64abi32-linux-user     -> cross-ppc64el-user
>
> Remove them from Shippable CI.
>
> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
> ---
>  .shippable.yml | 14 +-------------
>  1 file changed, 1 insertion(+), 13 deletions(-)
>
> diff --git a/.shippable.yml b/.shippable.yml
> index 14350e6de8a..97bfa2a0f38 100644
> --- a/.shippable.yml
> +++ b/.shippable.yml
> @@ -7,20 +7,8 @@ env:
>    matrix:
>      - IMAGE=debian-amd64
>        TARGET_LIST=x86_64-softmmu,x86_64-linux-user
> -    - IMAGE=debian-armel-cross
> -      TARGET_LIST=arm-softmmu,arm-linux-user,armeb-linux-user
> -    - IMAGE=debian-armhf-cross
> -      TARGET_LIST=arm-softmmu,arm-linux-user,armeb-linux-user
> -    - IMAGE=debian-arm64-cross
> -      TARGET_LIST=aarch64-softmmu,aarch64-linux-user
> -    - IMAGE=debian-s390x-cross
> -      TARGET_LIST=s390x-softmmu,s390x-linux-user
>      - IMAGE=debian-mips-cross
> -      TARGET_LIST=mips-softmmu,mipsel-linux-user
> -    - IMAGE=debian-mips64el-cross
> -      TARGET_LIST=mips64el-softmmu,mips64el-linux-user
> -    - IMAGE=debian-ppc64el-cross
> -      TARGET_LIST=ppc64-softmmu,ppc64-linux-user,ppc64abi32-linux-user
> +      TARGET_LIST=mips-softmmu
>  build:
>    pre_ci_boot:
>      image_name: registry.gitlab.com/qemu-project/qemu/qemu/${IMAGE}

Acked-by: Alex Bennée <alex.bennee@linaro.org>

-- 
Alex Bennée


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] shippable.yml: Remove jobs duplicated on Gitlab-CI
  2021-01-08 15:36     ` Paolo Bonzini
@ 2021-01-10 11:00       ` Philippe Mathieu-Daudé
  0 siblings, 0 replies; 7+ messages in thread
From: Philippe Mathieu-Daudé @ 2021-01-10 11:00 UTC (permalink / raw)
  To: Paolo Bonzini, Daniel P. Berrangé
  Cc: Fam Zheng, Philippe Mathieu-Daudé,
	Thomas Huth, Alex Bennée, qemu-devel

On 1/8/21 4:36 PM, Paolo Bonzini wrote:
> On 08/01/21 16:21, Daniel P. Berrangé wrote:
>> On Fri, Jan 08, 2021 at 04:14:30PM +0100, Paolo Bonzini wrote:
...
>>>
>>> The debian-mips-cross/mips-softmmu pair (and also mipsel-softmmu) is
>>> currently excluded by Gitlab's cross-mips-system, is there a reason for
>>> that?  If we add it there, we can just remove shippable altogether.

Can we get this cleaned one step at a time? :)

>> Some softmmu targets were disable to keep the build time under control.
>>
>> We could enable a different subset of targets for each cross host arch,
>> so that overall we get representative coverage of the full set.
> 
> Right, but at least KVM targets ought to be included in their own cross
> host.
> 
> Paolo
> 


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] shippable.yml: Remove jobs duplicated on Gitlab-CI
  2021-01-08 14:51 [PATCH] shippable.yml: Remove jobs duplicated on Gitlab-CI Philippe Mathieu-Daudé
  2021-01-08 15:14 ` Paolo Bonzini
  2021-01-08 16:42 ` Alex Bennée
@ 2021-01-12  9:34 ` Alex Bennée
  2 siblings, 0 replies; 7+ messages in thread
From: Alex Bennée @ 2021-01-12  9:34 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé
  Cc: Fam Zheng, Thomas Huth, Daniel P . Berrangé,
	qemu-devel, Paolo Bonzini, Philippe Mathieu-Daudé


Philippe Mathieu-Daudé <f4bug@amsat.org> writes:

> The following jobs are duplicated on Gitlab-CI since commit
> 6bcb5fc0f7a ("gitlab-ci: Add cross-compiling build tests"):

Queued to testing/next, thanks.

-- 
Alex Bennée


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2021-01-12  9:35 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-08 14:51 [PATCH] shippable.yml: Remove jobs duplicated on Gitlab-CI Philippe Mathieu-Daudé
2021-01-08 15:14 ` Paolo Bonzini
2021-01-08 15:21   ` Daniel P. Berrangé
2021-01-08 15:36     ` Paolo Bonzini
2021-01-10 11:00       ` Philippe Mathieu-Daudé
2021-01-08 16:42 ` Alex Bennée
2021-01-12  9:34 ` Alex Bennée

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.