Skip to content

Commit

Permalink
update circle again...
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanielc committed Oct 21, 2015
1 parent d7f1c74 commit a6d2677
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions circle.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
machine:
pre:
- bash < <(curl -s -S -L https://raw.githubusercontent.com/moovweb/gvm/master/binscripts/gvm-installer)
- source $HOME/.gvm/scripts/gvm; gvm install $GO_VERSION --binary
- source $HOME/.gvm/scripts/gvm; gvm install go1.5.1 --binary
environment:
IMPORT_PATH: "github.com/influxdb/kapacitor"
GO_VERSION: "go1.5.1"

dependencies:
override:
- source $HOME/.gvm/scripts/gvm; gvm use "$GO_VERSION"; mkdir -p "$GOPATH/src/$IMPORT_PATH"
- source $HOME/.gvm/scripts/gvm; gvm use "$GO_VERSION"; rsync -azC --delete ./ "$GOPATH/src/$IMPORT_PATH/"
- source $HOME/.gvm/scripts/gvm; gvm use "go1.5.1"; mkdir -p "$GOPATH/src/$IMPORT_PATH"
- source $HOME/.gvm/scripts/gvm; gvm use "go1.5.1"; rsync -azC --delete ./ "$GOPATH/src/$IMPORT_PATH/"

test:
override:
- source $HOME/.gvm/scripts/gvm; gvm use "$GO_VERSION"; make -C "$GOPATH/src/$IMPORT_PATH/"
- source $HOME/.gvm/scripts/gvm; gvm use "go1.5.1"; make -C "$GOPATH/src/$IMPORT_PATH/"

0 comments on commit a6d2677

Please sign in to comment.