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 # specify the version
- image: circleci/golang:1.10 - 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 working_directory: /go/src/github.com/itzg/mc-router
@ -28,6 +23,9 @@ jobs:
- cache-{{ arch }}-{{ .Branch }} - cache-{{ arch }}-{{ .Branch }}
- cache - cache
- run:
name: install glide
command: curl https://glide.sh/get | sh
- run: - run:
name: install dependencies name: install dependencies
command: glide install command: glide install
@ -44,6 +42,9 @@ jobs:
steps: steps:
- checkout - checkout
- run:
name: install glide
command: curl https://glide.sh/get | sh
- run: - run:
name: install dependencies name: install dependencies
command: glide install command: glide install

View File

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