mirror of https://github.com/status-im/consul.git
Merge pull request #5639 from hashicorp/checkout-outside-gopath
CircleCI: Checkout code outside GOPATH
This commit is contained in:
commit
15b8ea65bb
|
@ -29,7 +29,6 @@ jobs:
|
||||||
- image: *GOLANG_IMAGE
|
- image: *GOLANG_IMAGE
|
||||||
environment: &build-env
|
environment: &build-env
|
||||||
GOXPARALLEL: 2 # CircleCI containers are 2 CPU x 4GB RAM
|
GOXPARALLEL: 2 # CircleCI containers are 2 CPU x 4GB RAM
|
||||||
working_directory: /go/src/github.com/hashicorp/consul
|
|
||||||
steps:
|
steps:
|
||||||
- checkout
|
- checkout
|
||||||
- run: make tools
|
- run: make tools
|
||||||
|
@ -67,7 +66,6 @@ jobs:
|
||||||
dev-build:
|
dev-build:
|
||||||
docker:
|
docker:
|
||||||
- image: *GOLANG_IMAGE
|
- image: *GOLANG_IMAGE
|
||||||
working_directory: /go/src/github.com/hashicorp/consul
|
|
||||||
steps:
|
steps:
|
||||||
- checkout
|
- checkout
|
||||||
- run: make dev
|
- run: make dev
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
SHELL = bash
|
SHELL = bash
|
||||||
GOTOOLS = \
|
GOTOOLS = \
|
||||||
github.com/elazarl/go-bindata-assetfs/... \
|
github.com/elazarl/go-bindata-assetfs/go-bindata-assetfs \
|
||||||
github.com/hashicorp/go-bindata/... \
|
github.com/hashicorp/go-bindata/go-bindata \
|
||||||
github.com/mitchellh/gox \
|
github.com/mitchellh/gox \
|
||||||
golang.org/x/tools/cmd/cover \
|
golang.org/x/tools/cmd/cover \
|
||||||
golang.org/x/tools/cmd/stringer \
|
golang.org/x/tools/cmd/stringer \
|
||||||
|
|
Loading…
Reference in New Issue