qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] .shippable.yml: disable the win cross tests
@ 2018-12-14 15:17 Alex Bennée
  2018-12-14 18:08 ` Philippe Mathieu-Daudé
  2018-12-17 13:02 ` Peter Maydell
  0 siblings, 2 replies; 3+ messages in thread
From: Alex Bennée @ 2018-12-14 15:17 UTC (permalink / raw)
  To: qemu-devel
  Cc: Alex Bennée, Philippe Mathieu-Daudé, Fam Zheng,
	Philippe Mathieu-Daudé

The pkg.mxe.cc package repositories have been down for the last two
weeks causing the builds to fail when shippable re-builds the
containers.

This is really just a sticking plaster until we can get our own docker
hub images properly setup so we can avoid having dependencies on
external repos.

Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Cc: Philippe Mathieu-Daudé <philmd@redhat.com>
---
 .shippable.yml | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/.shippable.yml b/.shippable.yml
index f74a3de3ff..f2ffef21d1 100644
--- a/.shippable.yml
+++ b/.shippable.yml
@@ -7,10 +7,11 @@ env:
   matrix:
     - IMAGE=debian-amd64
       TARGET_LIST=x86_64-softmmu,x86_64-linux-user
-    - IMAGE=debian-win32-cross
-      TARGET_LIST=arm-softmmu,i386-softmmu,lm32-softmmu
-    - IMAGE=debian-win64-cross
-      TARGET_LIST=aarch64-softmmu,sparc64-softmmu,x86_64-softmmu
+    # currently disabled as the mxe.cc repos are down
+    # - IMAGE=debian-win32-cross
+    #   TARGET_LIST=arm-softmmu,i386-softmmu,lm32-softmmu
+    # - IMAGE=debian-win64-cross
+    #   TARGET_LIST=aarch64-softmmu,sparc64-softmmu,x86_64-softmmu
     - IMAGE=debian-armel-cross
       TARGET_LIST=arm-softmmu,arm-linux-user,armeb-linux-user
     - IMAGE=debian-armhf-cross
-- 
2.17.1

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

* Re: [Qemu-devel] [PATCH] .shippable.yml: disable the win cross tests
  2018-12-14 15:17 [Qemu-devel] [PATCH] .shippable.yml: disable the win cross tests Alex Bennée
@ 2018-12-14 18:08 ` Philippe Mathieu-Daudé
  2018-12-17 13:02 ` Peter Maydell
  1 sibling, 0 replies; 3+ messages in thread
From: Philippe Mathieu-Daudé @ 2018-12-14 18:08 UTC (permalink / raw)
  To: Alex Bennée; +Cc: QEMU Developers, Fam Zheng, Philippe Mathieu-Daudé

Le ven. 14 déc. 2018 16:17, Alex Bennée <alex.bennee@linaro.org> a écrit :

> The pkg.mxe.cc package repositories have been down for the last two
> weeks causing the builds to fail when shippable re-builds the
> containers.
>
> This is really just a sticking plaster until we can get our own docker
> hub images properly setup so we can avoid having dependencies on
> external repos.
>

I have few WiP branches on this topic but it is taking time...
Meanwhile:
Acked-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Maybe Peter can directly apply this as a build fix.


> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
> Cc: Philippe Mathieu-Daudé <philmd@redhat.com>
> ---
>  .shippable.yml | 9 +++++----
>  1 file changed, 5 insertions(+), 4 deletions(-)
>
> diff --git a/.shippable.yml b/.shippable.yml
> index f74a3de3ff..f2ffef21d1 100644
> --- a/.shippable.yml
> +++ b/.shippable.yml
> @@ -7,10 +7,11 @@ env:
>    matrix:
>      - IMAGE=debian-amd64
>        TARGET_LIST=x86_64-softmmu,x86_64-linux-user
> -    - IMAGE=debian-win32-cross
> -      TARGET_LIST=arm-softmmu,i386-softmmu,lm32-softmmu
> -    - IMAGE=debian-win64-cross
> -      TARGET_LIST=aarch64-softmmu,sparc64-softmmu,x86_64-softmmu
> +    # currently disabled as the mxe.cc repos are down
> +    # - IMAGE=debian-win32-cross
> +    #   TARGET_LIST=arm-softmmu,i386-softmmu,lm32-softmmu
> +    # - IMAGE=debian-win64-cross
> +    #   TARGET_LIST=aarch64-softmmu,sparc64-softmmu,x86_64-softmmu
>      - IMAGE=debian-armel-cross
>        TARGET_LIST=arm-softmmu,arm-linux-user,armeb-linux-user
>      - IMAGE=debian-armhf-cross
> --
> 2.17.1
>
>

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

* Re: [Qemu-devel] [PATCH] .shippable.yml: disable the win cross tests
  2018-12-14 15:17 [Qemu-devel] [PATCH] .shippable.yml: disable the win cross tests Alex Bennée
  2018-12-14 18:08 ` Philippe Mathieu-Daudé
@ 2018-12-17 13:02 ` Peter Maydell
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Maydell @ 2018-12-17 13:02 UTC (permalink / raw)
  To: Alex Bennée
  Cc: QEMU Developers, Fam Zheng, Philippe Mathieu-Daudé,
	Philippe Mathieu-Daudé

On Fri, 14 Dec 2018 at 15:19, Alex Bennée <alex.bennee@linaro.org> wrote:
>
> The pkg.mxe.cc package repositories have been down for the last two
> weeks causing the builds to fail when shippable re-builds the
> containers.

:-(

> This is really just a sticking plaster until we can get our own docker
> hub images properly setup so we can avoid having dependencies on
> external repos.

Applied to master, thanks.

-- PMM

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

end of thread, other threads:[~2018-12-17 13:15 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-12-14 15:17 [Qemu-devel] [PATCH] .shippable.yml: disable the win cross tests Alex Bennée
2018-12-14 18:08 ` Philippe Mathieu-Daudé
2018-12-17 13:02 ` Peter Maydell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).