mirror of https://github.com/dexidp/dex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
709 B
32 lines
709 B
language: go |
|
|
|
sudo: required |
|
|
|
go: |
|
- 1.8 |
|
- 1.9 |
|
- '1.10' |
|
|
|
go_import_path: github.com/coreos/dex |
|
|
|
services: |
|
- postgresql |
|
- 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 |
|
|
|
install: |
|
- go get -u github.com/golang/lint/golint |
|
- 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 |
|
|
|
|
|
script: |
|
- make testall |
|
- ./scripts/test-k8s.sh |
|
- make verify-proto # Ensure proto generation doesn't depend on external packages. |
|
|
|
notifications: |
|
email: false
|
|
|