Skip to content

Commit

Permalink
Gopkg fixes (#60)
Browse files Browse the repository at this point in the history
## Description

* fix: install a release version of dep during builds
* fix: Gopkg.lock issues due to dep update
  • Loading branch information
Dara Hayes committed Aug 23, 2018
1 parent 8b4098a commit fc70de7
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
steps:
- checkout
- run: go get github.com/mattn/goveralls
- run: go get -u github.com/golang/dep/cmd/dep
- run: curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
- run: make build
- run: make test-integration-cover
- run: /go/bin/goveralls -coverprofile=coverage-all.out -service=circle-ci -repotoken=$COVERALLS_TOKEN
Expand All @@ -30,7 +30,7 @@ jobs:
- image: circleci/golang:1.9
steps:
- checkout
- run: go get -u github.com/golang/dep/cmd/dep
- run: curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
- run: make setup
- setup_remote_docker
- run: make build_linux
Expand All @@ -43,7 +43,7 @@ jobs:
- image: circleci/golang:1.9
steps:
- checkout
- run: go get -u github.com/golang/dep/cmd/dep
- run: curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
- run: make setup
- run: curl -sL https://raw.githubusercontent.com/goreleaser/get/master/get | bash
- setup_remote_docker
Expand Down
40 changes: 36 additions & 4 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit fc70de7

Please sign in to comment.