ee27a4f9f4
This change modifies our release process to only require Docker when building a release and updates our released binary to use Go 1.8. It also removes our .aci scripts, which we've not been regularly building. A nice consequence is that OSX users can now build a release image.
22 lines
272 B
YAML
22 lines
272 B
YAML
language: go
|
|
|
|
go:
|
|
- 1.7.5
|
|
- 1.8
|
|
|
|
services:
|
|
- postgresql
|
|
|
|
env:
|
|
- DEX_POSTGRES_DATABASE=postgres DEX_POSTGRES_USER=postgres DEX_POSTGRES_HOST="localhost"
|
|
|
|
|
|
install:
|
|
- go get -u github.com/golang/lint/golint
|
|
|
|
script:
|
|
- make testall
|
|
|
|
notifications:
|
|
email: false
|