From e4a625d24b20acb67c3f8854820299d3bed15200 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Tue, 1 Jun 2021 10:36:09 +0200 Subject: [PATCH] travis: temporarily disable ppc The ppc machines use systemd, so starting xvfb doesnt work +sh -e /etc/init.d/xvfb start sh: 0: Can't open /etc/init.d/xvfb Temporarily disabling it for now Signed-off-by: Sebastiaan van Stijn --- .travis.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index d6f0534..7bd675a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,7 +7,6 @@ os: - linux - osx - - linux-ppc64le notifications: email: false go: @@ -20,6 +19,6 @@ before_script: - make deps - "export DISPLAY=:99.0" - - if [[ "$TRAVIS_OS_NAME" == "linux" && "$HOSTTYPE" != "ppc64le" ]]; then sh ci/before_script_linux.sh; fi + - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sh ci/before_script_linux.sh; fi - make validate script: make test