Skip to content

Commit

Permalink
Merge pull request #30 from tendermint/circle
Browse files Browse the repository at this point in the history
circle.yml
  • Loading branch information
ebuchman authored Feb 13, 2017
2 parents 62a61e8 + 1e21e8c commit c8fea0f
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions circle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
machine:
environment:
GOPATH: /home/ubuntu/.go_workspace
REPO: $GOPATH/src/github.com/$CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME
hosts:
circlehost: 127.0.0.1
localhost: 127.0.0.1

checkout:
post:
- rm -rf $REPO
- mkdir -p $HOME/.go_workspace/src/github.com/$CIRCLE_PROJECT_USERNAME
- mv $HOME/$CIRCLE_PROJECT_REPONAME $REPO

dependencies:
override:
- go get github.com/Masterminds/glide
- go version
- glide --version
- "cd $REPO && glide install"

test:
override:
- "cd $REPO && make test"


0 comments on commit c8fea0f

Please sign in to comment.