dex/.travis.yml

31 lines
660 B
YAML
Raw Normal View History

2016-08-19 04:04:41 +05:30
language: go
2017-04-11 03:35:10 +05:30
sudo: required
2016-08-19 04:04:41 +05:30
go:
2018-03-21 03:20:33 +05:30
- '1.10'
2018-10-23 06:14:24 +05:30
- '1.11'
2016-08-19 04:04:41 +05:30
go_import_path: github.com/dexidp/dex
services:
- postgresql
2017-09-20 04:01:58 +05:30
- docker
env:
- DEX_POSTGRES_DATABASE=postgres DEX_POSTGRES_USER=postgres DEX_POSTGRES_HOST="localhost" DEX_ETCD_ENDPOINTS=http://localhost:2379 DEX_LDAP_TESTS=1 DEBIAN_FRONTEND=noninteractive
2016-08-19 04:04:41 +05:30
install:
2017-04-11 03:35:10 +05:30
- sudo -E apt-get install -y --force-yes slapd time ldap-utils
- sudo /etc/init.d/slapd stop
- docker run -d --net=host gcr.io/etcd-development/etcd:v3.2.9
2017-04-11 03:35:10 +05:30
2016-08-19 04:04:41 +05:30
script:
- make testall
2017-09-20 04:01:58 +05:30
- ./scripts/test-k8s.sh
2017-12-01 06:10:42 +05:30
- make verify-proto # Ensure proto generation doesn't depend on external packages.
2016-08-19 04:04:41 +05:30
notifications:
email: false