This repository has been archived on 2022-08-17. You can view files and clone it, but cannot push or open issues or pull requests.
dex/.travis.yml

31 lines
660 B
YAML
Raw Normal View History

2016-08-18 15:34:41 -07:00
language: go
2017-04-10 15:05:10 -07:00
sudo: required
2016-08-18 15:34:41 -07:00
go:
2018-03-20 14:50:33 -07:00
- '1.10'
2018-10-22 17:44:24 -07:00
- '1.11'
2016-08-18 15:34:41 -07:00
go_import_path: github.com/dexidp/dex
services:
- postgresql
2017-09-19 15:31:58 -07:00
- 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-18 15:34:41 -07:00
install:
2017-04-10 15:05:10 -07:00
- 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-10 15:05:10 -07:00
2016-08-18 15:34:41 -07:00
script:
- make testall
2017-09-19 15:31:58 -07:00
- ./scripts/test-k8s.sh
2017-11-30 16:40:42 -08:00
- make verify-proto # Ensure proto generation doesn't depend on external packages.
2016-08-18 15:34:41 -07:00
notifications:
email: false