ci: install glide

This commit is contained in:
Geoff Bourne 2018-05-26 12:35:11 -05:00
parent 2befd24b4a
commit 72f910622d
2 changed files with 10 additions and 5 deletions

View File

@ -8,11 +8,6 @@ defaults: &defaults
# specify the version
- image: circleci/golang:1.10
# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
# documented at https://circleci.com/docs/2.0/circleci-images/
# - image: circleci/postgres:9.4
working_directory: /go/src/github.com/itzg/mc-router
@ -28,6 +23,9 @@ jobs:
- cache-{{ arch }}-{{ .Branch }}
- cache
- run:
name: install glide
command: curl https://glide.sh/get | sh
- run:
name: install dependencies
command: glide install
@ -44,6 +42,9 @@ jobs:
steps:
- checkout
- run:
name: install glide
command: curl https://glide.sh/get | sh
- run:
name: install dependencies
command: glide install

View File

@ -41,3 +41,7 @@ dockers:
tag_templates:
- "{{.Tag}}"
- latest
changelog:
filters:
exclude:
- '^ci:'