surrealpatch/circle.yml
Tobie Morgan Hitchcock 292567b9c2 Setup circleci correctly
2016-07-04 13:53:07 +01:00

55 lines
No EOL
1.4 KiB
YAML

# -----------------------------------
general:
branches:
only:
- master
# -----------------------------------
machine:
timezone:
UTC
services:
- docker
# -----------------------------------
checkout:
post:
# git tags are used to generate build info which is baked into the
# binary, but unfortunately it is not possible to fetch all tags
# without also unshallowing the checkout, so we must do both.
- git fetch --unshallow --tags
# GOPATH is cached, so we need to clean out the version from the previous
# run or the subsequent `mv` will fail.
- rm -rf "${GOPATH%%:*}/src/github.com/abcum/surreal"
- mkdir -p "${GOPATH%%:*}/src/github.com/abcum/"
- mv ~/surreal "${GOPATH%%:*}/src/github.com/abcum/"
- ln -s "${GOPATH%%:*}/src/github.com/abcum/surreal" ~/surreal
# -----------------------------------
dependencies:
override:
- docker info
- docker login -e $DOCKER_EMAIL -u $DOCKER_USER -p $DOCKER_PASS
- go get -u github.com/Masterminds/glide
# -----------------------------------
test:
override:
- make test
- make build
- docker build -t abcum/surreal .
- docker run -d abcum/surreal start; sleep 15
# -----------------------------------
deployment:
deploy:
branch: master
commands:
- docker push abcum/surreal