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:
|
2017-10-05 09:33:50 +05:30
|
|
|
- 1.8
|
|
|
|
- 1.9
|
2016-08-19 04:04:41 +05:30
|
|
|
|
2017-11-06 19:53:25 +05:30
|
|
|
go_import_path: github.com/coreos/dex
|
|
|
|
|
2016-09-23 11:53:56 +05:30
|
|
|
services:
|
|
|
|
- postgresql
|
2017-09-20 04:01:58 +05:30
|
|
|
- docker
|
2016-09-23 11:53:56 +05:30
|
|
|
|
|
|
|
env:
|
2017-11-06 19:53:25 +05:30
|
|
|
- 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-09-23 11:53:56 +05:30
|
|
|
|
2016-08-19 04:04:41 +05:30
|
|
|
install:
|
|
|
|
- go get -u github.com/golang/lint/golint
|
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
|
2017-11-06 19:53:25 +05:30
|
|
|
- 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
|
2016-08-19 04:04:41 +05:30
|
|
|
|
|
|
|
notifications:
|
|
|
|
email: false
|