summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/spf13/cobra/.circleci/config.yml
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2018-04-16 05:37:14 -0700
committerJoram Wilander <jwawilander@gmail.com>2018-04-16 08:37:14 -0400
commit6e2cb00008cbf09e556b00f87603797fcaa47e09 (patch)
tree3c0eb55ff4226a3f024aad373140d1fb860a6404 /vendor/github.com/spf13/cobra/.circleci/config.yml
parentbf24f51c4e1cc6286885460672f7f449e8c6f5ef (diff)
downloadchat-6e2cb00008cbf09e556b00f87603797fcaa47e09.tar.gz
chat-6e2cb00008cbf09e556b00f87603797fcaa47e09.tar.bz2
chat-6e2cb00008cbf09e556b00f87603797fcaa47e09.zip
Depenancy upgrades and movign to dep. (#8630)
Diffstat (limited to 'vendor/github.com/spf13/cobra/.circleci/config.yml')
-rw-r--r--vendor/github.com/spf13/cobra/.circleci/config.yml38
1 files changed, 0 insertions, 38 deletions
diff --git a/vendor/github.com/spf13/cobra/.circleci/config.yml b/vendor/github.com/spf13/cobra/.circleci/config.yml
deleted file mode 100644
index 136e17f0e..000000000
--- a/vendor/github.com/spf13/cobra/.circleci/config.yml
+++ /dev/null
@@ -1,38 +0,0 @@
-workflows:
- version: 2
- main:
- jobs:
- - go-current
- - go-previous
- - go-latest
-base: &base
- working_directory: /go/src/github.com/spf13/cobra
- steps:
- - checkout
- - run:
- name: "All Commands"
- command: |
- mkdir -p bin
- curl -Lso bin/shellcheck https://github.com/caarlos0/shellcheck-docker/releases/download/v0.4.3/shellcheck
- chmod +x bin/shellcheck
- go get -t -v ./...
- PATH=$PATH:$PWD/bin go test -v ./...
- go build
- diff -u <(echo -n) <(gofmt -d -s .)
- if [ -z $NOVET ]; then
- diff -u <(echo -n) <(go tool vet . 2>&1 | grep -vE 'ExampleCommand|bash_completions.*Fprint');
- fi
-version: 2
-jobs:
- go-current:
- docker:
- - image: circleci/golang:1.8.3
- <<: *base
- go-previous:
- docker:
- - image: circleci/golang:1.7.6
- <<: *base
- go-latest:
- docker:
- - image: circleci/golang:latest
- <<: *base