[Qemu-devel] [PATCH] travis: the xcode10 image seems to be hosed

Paolo Bonzini posted 1 patch 6 years, 8 months ago
Test asan passed
Test docker-mingw@fedora passed
Test docker-clang@ubuntu failed
Test checkpatch passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20190220104523.22059-2-pbonzini@redhat.com
Maintainers: Fam Zheng <fam@euphon.net>, "Philippe Mathieu-Daudé" <philmd@redhat.com>, "Alex Bennée" <alex.bennee@linaro.org>
There is a newer version of this series
.travis.yml | 8 ++++++++
1 file changed, 8 insertions(+)
[Qemu-devel] [PATCH] travis: the xcode10 image seems to be hosed
Posted by Paolo Bonzini 6 years, 8 months ago
It fails to install homebrew.  Since this is out of our control, mark
it as an expected failure.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 .travis.yml | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/.travis.yml b/.travis.yml
index baa06b976a..a7ab72b43b 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -254,3 +254,11 @@ matrix:
     - env:
         - CONFIG="--disable-system"
         - TEST_CMD="make -j3 check-tcg V=1"
+
+
+  allow_failures:
+    - env:
+        - CONFIG="--target-list=i386-softmmu,ppc-softmmu,ppc64-softmmu,m68k-softmmu,x86_64-softmmu"
+      os: osx
+      osx_image: xcode10
+      compiler: clang
-- 
2.20.1


Re: [Qemu-devel] [PATCH] travis: the xcode10 image seems to be hosed
Posted by Paolo Bonzini 6 years, 8 months ago
On 20/02/19 11:45, Paolo Bonzini wrote:
> It fails to install homebrew.  Since this is out of our control, mark
> it as an expected failure.
> 
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
>  .travis.yml | 8 ++++++++
>  1 file changed, 8 insertions(+)
> 
> diff --git a/.travis.yml b/.travis.yml
> index baa06b976a..a7ab72b43b 100644
> --- a/.travis.yml
> +++ b/.travis.yml
> @@ -254,3 +254,11 @@ matrix:
>      - env:
>          - CONFIG="--disable-system"
>          - TEST_CMD="make -j3 check-tcg V=1"
> +
> +
> +  allow_failures:
> +    - env:
> +        - CONFIG="--target-list=i386-softmmu,ppc-softmmu,ppc64-softmmu,m68k-softmmu,x86_64-softmmu"
> +      os: osx
> +      osx_image: xcode10
> +      compiler: clang
> 

Hmm, this won't work. allow_failures row are not matched against
"include" rows.  Let's just disable the failing test.

Paolo