Skip to content

Commit 72f9106

Browse files
committed
ci: install glide
1 parent 2befd24 commit 72f9106

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

.circleci/config.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,6 @@ defaults: &defaults
88
# specify the version
99
- image: circleci/golang:1.10
1010

11-
# Specify service dependencies here if necessary
12-
# CircleCI maintains a library of pre-built images
13-
# documented at https://circleci.com/docs/2.0/circleci-images/
14-
# - image: circleci/postgres:9.4
15-
1611
working_directory: /go/src/github.com/itzg/mc-router
1712

1813

@@ -28,6 +23,9 @@ jobs:
2823
- cache-{{ arch }}-{{ .Branch }}
2924
- cache
3025

26+
- run:
27+
name: install glide
28+
command: curl https://glide.sh/get | sh
3129
- run:
3230
name: install dependencies
3331
command: glide install
@@ -44,6 +42,9 @@ jobs:
4442
steps:
4543
- checkout
4644

45+
- run:
46+
name: install glide
47+
command: curl https://glide.sh/get | sh
4748
- run:
4849
name: install dependencies
4950
command: glide install

.goreleaser.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,7 @@ dockers:
4141
tag_templates:
4242
- "{{.Tag}}"
4343
- latest
44+
changelog:
45+
filters:
46+
exclude:
47+
- '^ci:'

0 commit comments

Comments
 (0)