mirror of
https://github.com/docker/docker-credential-helpers.git
synced 2026-06-14 00:11:28 +05:30
e4a625d24b
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>
25 lines
456 B
YAML
25 lines
456 B
YAML
---
|
|
# See appveyor.yml for windows build.
|
|
sudo: required
|
|
language: go
|
|
dist: trusty
|
|
osx_image: xcode10.1
|
|
os:
|
|
- linux
|
|
- osx
|
|
notifications:
|
|
email: false
|
|
go:
|
|
- 1.12.x
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- libsecret-1-dev
|
|
- pass
|
|
before_script:
|
|
- make deps
|
|
- "export DISPLAY=:99.0"
|
|
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sh ci/before_script_linux.sh; fi
|
|
- make validate
|
|
script: make test
|