From b30dfcc8d5a02fbcc243a790ac755906af6a0f53 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 6 May 2020 22:47:26 +0200 Subject: [PATCH] Ignore failures in PPC/s390 builds They fail just too often for some infrastructure flakiness reasons and constantly result in false positives. --- .travis.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.travis.yml b/.travis.yml index b7ca5f0eb1..f4568fc949 100644 --- a/.travis.yml +++ b/.travis.yml @@ -74,6 +74,18 @@ matrix: env: wxCONFIGURE_FLAGS="--disable-sys-libs --disable-gui" wxLXC=1 wxSKIP_GUI=1 name: wxBase S/390 + # The environments running these builds are flaky and often fail for the + # reasons that have nothing to do with the build itself. + allow_failures: + - os: linux + arch: ppc64le + env: wxCONFIGURE_FLAGS="--disable-sys-libs --disable-gui" wxLXC=1 wxSKIP_GUI=1 + name: wxBase PowerPC64 + - os: linux + arch: s390x + env: wxCONFIGURE_FLAGS="--disable-sys-libs --disable-gui" wxLXC=1 wxSKIP_GUI=1 + name: wxBase S/390 + branches: only: - master