Skip to content

Commit

Permalink
Merge pull request #11 from cybozu-go/fix-etcd-version
Browse files Browse the repository at this point in the history
Fix etcd version
  • Loading branch information
zoetrope committed Sep 3, 2018
2 parents 9fec52c + 9c8cb6d commit 9f70dfe
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Makefile
Expand Up @@ -4,10 +4,18 @@ CONTROL := debian/DEBIAN/control

all:
go get -d ./...
cd $$GOPATH/src/github.com/coreos/etcd && \
git fetch origin && \
git checkout v3.3.9
go get -d ./...
go install ./...

test:
go get -d -t ./...
cd $$GOPATH/src/github.com/coreos/etcd && \
git fetch origin && \
git checkout v3.3.9
go get -d -t ./...
go test -race -count 1 -v ./...
test -z "$$(goimports -d . | tee /dev/stderr)"
golint -set_exit_status ./...
Expand Down

0 comments on commit 9f70dfe

Please sign in to comment.