1
0
mirror of https://github.com/docker/docker-credential-helpers.git synced 2026-06-13 16:01:28 +05:30

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 <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn
2021-06-01 10:36:09 +02:00
parent f552261f32
commit e4a625d24b
+1 -2
View File
@@ -7,7 +7,6 @@
os: os:
- linux - linux
- osx - osx
- linux-ppc64le
notifications: notifications:
email: false email: false
go: go:
@@ -20,6 +19,6 @@
before_script: before_script:
- make deps - make deps
- "export DISPLAY=:99.0" - "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 - make validate
script: make test script: make test