1
0
Fork 0

Migrate CI to travis

- Add travis build file
- Use golang alpine image
- Clean scripts a little bit
- Disable CGO for test-integration >_<
This commit is contained in:
emile 2016-02-19 12:58:06 +01:00
parent 3a08655b06
commit 91b699fbe0
No known key found for this signature in database
GPG key ID: D808B4C167352E59
7 changed files with 63 additions and 19 deletions

View file

@ -1,13 +1,14 @@
FROM golang:1.6
FROM golang:1.6.0-alpine
RUN apk update && apk add git bash gcc
RUN go get github.com/Masterminds/glide
RUN go get github.com/mitchellh/gox
RUN go get github.com/tcnksm/ghr
RUN go get github.com/jteeuwen/go-bindata/...
RUN go get github.com/golang/lint/golint
# Which docker version to test on
ENV DOCKER_VERSION 1.6.2
ENV DOCKER_VERSION 1.10.1
# enable GO15VENDOREXPERIMENT
ENV GO15VENDOREXPERIMENT 1