diff --git a/.circleci/config.yml b/.circleci/config.yml index 9cfc389..a3ff2bf 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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 diff --git a/.goreleaser.yml b/.goreleaser.yml index 0241c48..42cdbf0 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -41,3 +41,7 @@ dockers: tag_templates: - "{{.Tag}}" - latest +changelog: + filters: + exclude: + - '^ci:' \ No newline at end of file