Skip to content

Commit

Permalink
Merge pull request #48 from aerogear/use-dep
Browse files Browse the repository at this point in the history
 ⬆ use dep to manage deps
  • Loading branch information
Wei Li authored Dec 4, 2018
2 parents 8a09068 + 7329c69 commit 55d9a6e
Show file tree
Hide file tree
Showing 15 changed files with 478 additions and 312 deletions.
16 changes: 8 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ jobs:
- checkout
# specify any bash command here prefixed with `run: `
- run:
name: Install Glide
command: curl https://glide.sh/get | sh
name: Install dep
command: curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
- run:
name: Install Mockery
command: go get github.com/vektra/mockery/.../
Expand All @@ -29,12 +29,12 @@ jobs:
docker_push_master:
working_directory: /go/src/github.com/aerogear/ups-config-operator
docker:
- image: circleci/golang:1.9
- image: circleci/golang:1.10
steps:
- checkout
- run:
name: Install Glide
command: curl https://glide.sh/get | sh
name: Install dep
command: curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
- run:
name: Install Mockery
command: go get github.com/vektra/mockery/.../
Expand All @@ -47,12 +47,12 @@ jobs:
docker_release:
working_directory: /go/src/github.com/aerogear/ups-config-operator
docker:
- image: circleci/golang:1.9
- image: circleci/golang:1.10
steps:
- checkout
- run:
name: Install Glide
command: curl https://glide.sh/get | sh
name: Install dep
command: curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
- run:
name: Install Mockery
command: go get github.com/vektra/mockery/.../
Expand Down
Loading

0 comments on commit 55d9a6e

Please sign in to comment.