diff --git a/circle.yml b/circle.yml index 453528c46..70b9caaff 100644 --- a/circle.yml +++ b/circle.yml @@ -11,6 +11,9 @@ jobs: EUREKA_ADDR: http://localhost:8761/eureka steps: - checkout + - run: wget -q https://storage.googleapis.com/golang/go1.11.linux-amd64.tar.gz + - run: sudo rm -rf /usr/local/go + - run: sudo tar -C /usr/local -xzf go1.11.linux-amd64.tar.gz - run: docker-compose -f docker-compose-integration.yml up -d --force-recreate - run: go get -t github.com/go-kit/kit/... - run: go test -v -race -tags integration github.com/go-kit/kit/...