diff --git a/hack/.vendor-helpers.sh b/hack/.vendor-helpers.sh index dea1024607..15a1546153 100755 --- a/hack/.vendor-helpers.sh +++ b/hack/.vendor-helpers.sh @@ -138,6 +138,10 @@ clean() { echo -n 'pruning unused files, ' $find vendor -type f -name '*_test.go' -exec rm -v '{}' ';' $find vendor -type f -name 'Vagrantfile' -exec rm -v '{}' ';' + local ci + for ci in .travis.yml .hound.yml appveyor.yml circle.yml codecov.yml; do + $find vendor -type f -name "$ci" -exec rm -v '{}' ';' + done # These are the files that are left over after fix_rewritten_imports is run. echo -n 'pruning .orig files, ' diff --git a/vendor/src/github.com/BurntSushi/toml/.travis.yml b/vendor/src/github.com/BurntSushi/toml/.travis.yml deleted file mode 100644 index 43caf6d021..0000000000 --- a/vendor/src/github.com/BurntSushi/toml/.travis.yml +++ /dev/null @@ -1,12 +0,0 @@ -language: go -go: - - 1.1 - - 1.2 - - tip -install: - - go install ./... - - go get github.com/BurntSushi/toml-test -script: - - export PATH="$PATH:$HOME/gopath/bin" - - make test - diff --git a/vendor/src/github.com/RackSec/srslog/.travis.yml b/vendor/src/github.com/RackSec/srslog/.travis.yml deleted file mode 100644 index 4e5c4f0753..0000000000 --- a/vendor/src/github.com/RackSec/srslog/.travis.yml +++ /dev/null @@ -1,18 +0,0 @@ -sudo: required -dist: trusty -group: edge -language: go -go: -- 1.5 -before_install: - - pip install --user codecov -script: -- | - go get ./... - go test -v -coverprofile=coverage.txt -covermode=atomic - go vet -after_success: - - codecov -notifications: - slack: - secure: dtDue9gP6CRR1jYjEf6raXXFak3QKGcCFvCf5mfvv5XScdpmc3udwgqc5TdyjC0goaC9OK/4jTcCD30dYZm/u6ux3E9mo3xwMl2xRLHx76p5r9rSQtloH19BDwA2+A+bpDfFQVz05k2YXuTiGSvNMMdwzx+Dr294Sl/z43RFB4+b9/R/6LlFpRW89IwftvpLAFnBy4K/ZcspQzKM+rQfQTL5Kk+iZ/KBsuR/VziDq6MoJ8t43i4ee8vwS06vFBKDbUiZ4FIZpLgc2RAL5qso5aWRKYXL6waXfoKHZWKPe0w4+9IY1rDJxG1jEb7YGgcbLaF9xzPRRs2b2yO/c87FKpkh6PDgYHfLjpgXotCoojZrL4p1x6MI1ldJr3NhARGPxS9r4liB9n6Y5nD+ErXi1IMf55fuUHcPY27Jc0ySeLFeM6cIWJ8OhFejCgGw6a5DnnmJo0PqopsaBDHhadpLejT1+K6bL2iGkT4SLcVNuRGLs+VyuNf1+5XpkWZvy32vquO7SZOngLLBv+GIem+t3fWm0Z9s/0i1uRCQei1iUutlYjoV/LBd35H2rhob4B5phIuJin9kb0zbHf6HnaoN0CtN8r0d8G5CZiInVlG5Xcid5Byb4dddf5U2EJTDuCMVyyiM7tcnfjqw9UbVYNxtYM9SzcqIq+uVqM8pYL9xSec= diff --git a/vendor/src/github.com/Sirupsen/logrus/.travis.yml b/vendor/src/github.com/Sirupsen/logrus/.travis.yml deleted file mode 100644 index ff23150dc3..0000000000 --- a/vendor/src/github.com/Sirupsen/logrus/.travis.yml +++ /dev/null @@ -1,9 +0,0 @@ -language: go -go: - - 1.3 - - 1.4 - - 1.5 - - tip -install: - - go get -t ./... -script: GOMAXPROCS=4 GORACE="halt_on_error=1" go test -race -v ./... diff --git a/vendor/src/github.com/armon/go-radix/.travis.yml b/vendor/src/github.com/armon/go-radix/.travis.yml deleted file mode 100644 index 1a0bbea6c7..0000000000 --- a/vendor/src/github.com/armon/go-radix/.travis.yml +++ /dev/null @@ -1,3 +0,0 @@ -language: go -go: - - tip diff --git a/vendor/src/github.com/boltdb/bolt/appveyor.yml b/vendor/src/github.com/boltdb/bolt/appveyor.yml deleted file mode 100644 index 6e26e941d6..0000000000 --- a/vendor/src/github.com/boltdb/bolt/appveyor.yml +++ /dev/null @@ -1,18 +0,0 @@ -version: "{build}" - -os: Windows Server 2012 R2 - -clone_folder: c:\gopath\src\github.com\boltdb\bolt - -environment: - GOPATH: c:\gopath - -install: - - echo %PATH% - - echo %GOPATH% - - go version - - go env - - go get -v -t ./... - -build_script: - - go test -v ./... diff --git a/vendor/src/github.com/bsphere/le_go/.travis.yml b/vendor/src/github.com/bsphere/le_go/.travis.yml deleted file mode 100644 index aa1b91fe6c..0000000000 --- a/vendor/src/github.com/bsphere/le_go/.travis.yml +++ /dev/null @@ -1,4 +0,0 @@ -language: go - -go: - - 1.4 \ No newline at end of file diff --git a/vendor/src/github.com/deckarep/golang-set/.travis.yml b/vendor/src/github.com/deckarep/golang-set/.travis.yml deleted file mode 100644 index db1359c72e..0000000000 --- a/vendor/src/github.com/deckarep/golang-set/.travis.yml +++ /dev/null @@ -1,9 +0,0 @@ -language: go - -go: - - 1.2 - -script: - - go test ./... - #- go test -race ./... - diff --git a/vendor/src/github.com/docker/distribution/circle.yml b/vendor/src/github.com/docker/distribution/circle.yml deleted file mode 100644 index 164407dca1..0000000000 --- a/vendor/src/github.com/docker/distribution/circle.yml +++ /dev/null @@ -1,90 +0,0 @@ -# Pony-up! -machine: - pre: - # Install gvm - - bash < <(curl -s -S -L https://raw.githubusercontent.com/moovweb/gvm/1.0.22/binscripts/gvm-installer) - # Install codecov for coverage - - pip install --user codecov - - post: - # go - - gvm install go1.6 --prefer-binary --name=stable - - environment: - # Convenient shortcuts to "common" locations - CHECKOUT: /home/ubuntu/$CIRCLE_PROJECT_REPONAME - BASE_DIR: src/github.com/$CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME - # Trick circle brainflat "no absolute path" behavior - BASE_STABLE: ../../../$HOME/.gvm/pkgsets/stable/global/$BASE_DIR - DOCKER_BUILDTAGS: "include_oss include_gcs" - # Workaround Circle parsing dumb bugs and/or YAML wonkyness - CIRCLE_PAIN: "mode: set" - - hosts: - # Not used yet - fancy: 127.0.0.1 - -dependencies: - pre: - # Copy the code to the gopath of all go versions - - > - gvm use stable && - mkdir -p "$(dirname $BASE_STABLE)" && - cp -R "$CHECKOUT" "$BASE_STABLE" - - override: - # Install dependencies for every copied clone/go version - - gvm use stable && go get github.com/tools/godep: - pwd: $BASE_STABLE - - post: - # For the stable go version, additionally install linting tools - - > - gvm use stable && - go get github.com/axw/gocov/gocov github.com/golang/lint/golint - -test: - pre: - # Output the go versions we are going to test - # - gvm use old && go version - - gvm use stable && go version - - # todo(richard): replace with a more robust vendoring solution. Removed due to a fundamental disagreement in godep philosophies. - # Ensure validation of dependencies - # - gvm use stable && if test -n "`git diff --stat=1000 master | grep -Ei \"vendor|godeps\"`"; then make dep-validate; fi: - # pwd: $BASE_STABLE - - # First thing: build everything. This will catch compile errors, and it's - # also necessary for go vet to work properly (see #807). - - gvm use stable && godep go install $(go list ./... | grep -v "/vendor/"): - pwd: $BASE_STABLE - - # FMT - - gvm use stable && make fmt: - pwd: $BASE_STABLE - - # VET - - gvm use stable && make vet: - pwd: $BASE_STABLE - - # LINT - - gvm use stable && make lint: - pwd: $BASE_STABLE - - override: - # Test stable, and report - - gvm use stable; export ROOT_PACKAGE=$(go list .); go list -tags "$DOCKER_BUILDTAGS" ./... | grep -v "/vendor/" | xargs -L 1 -I{} bash -c 'export PACKAGE={}; godep go test -tags "$DOCKER_BUILDTAGS" -test.short -coverprofile=$GOPATH/src/$PACKAGE/coverage.out -coverpkg=$(./coverpkg.sh $PACKAGE $ROOT_PACKAGE) $PACKAGE': - timeout: 1000 - pwd: $BASE_STABLE - - post: - # Report to codecov - - bash <(curl -s https://codecov.io/bash): - pwd: $BASE_STABLE - - ## Notes - # Disabled the -race detector due to massive memory usage. - # Do we want these as well? - # - go get code.google.com/p/go.tools/cmd/goimports - # - test -z "$(goimports -l -w ./... | tee /dev/stderr)" - # http://labix.org/gocheck diff --git a/vendor/src/github.com/docker/go-units/circle.yml b/vendor/src/github.com/docker/go-units/circle.yml deleted file mode 100644 index 9043b35478..0000000000 --- a/vendor/src/github.com/docker/go-units/circle.yml +++ /dev/null @@ -1,11 +0,0 @@ -dependencies: - post: - # install golint - - go get github.com/golang/lint/golint - -test: - pre: - # run analysis before tests - - go vet ./... - - test -z "$(golint ./... | tee /dev/stderr)" - - test -z "$(gofmt -s -l . | tee /dev/stderr)" diff --git a/vendor/src/github.com/docker/libkv/.travis.yml b/vendor/src/github.com/docker/libkv/.travis.yml deleted file mode 100644 index 23ef6e054b..0000000000 --- a/vendor/src/github.com/docker/libkv/.travis.yml +++ /dev/null @@ -1,31 +0,0 @@ -language: go - -go: - - 1.5.3 - -# let us have speedy Docker-based Travis workers -sudo: false - -before_install: - # Symlink below is needed for Travis CI to work correctly on personal forks of libkv - - ln -s $HOME/gopath/src/github.com/${TRAVIS_REPO_SLUG///libkv/} $HOME/gopath/src/github.com/docker - - go get golang.org/x/tools/cmd/cover - - go get github.com/mattn/goveralls - - go get github.com/golang/lint/golint - - go get github.com/GeertJohan/fgt - -before_script: - - script/travis_consul.sh 0.6.3 - - script/travis_etcd.sh 3.0.0 - - script/travis_zk.sh 3.5.1-alpha - -script: - - ./consul agent -server -bootstrap -advertise=127.0.0.1 -data-dir /tmp/consul -config-file=./config.json 1>/dev/null & - - ./etcd/etcd --listen-client-urls 'http://0.0.0.0:4001' --advertise-client-urls 'http://127.0.0.1:4001' >/dev/null 2>&1 & - - ./zk/bin/zkServer.sh start ./zk/conf/zoo.cfg 1> /dev/null - - script/validate-gofmt - - go vet ./... - - fgt golint ./... - - go test -v -race ./... - - script/coverage - - goveralls -service=travis-ci -coverprofile=goverage.report diff --git a/vendor/src/github.com/docker/libnetwork/circle.yml b/vendor/src/github.com/docker/libnetwork/circle.yml deleted file mode 100644 index bd34a8f19b..0000000000 --- a/vendor/src/github.com/docker/libnetwork/circle.yml +++ /dev/null @@ -1,19 +0,0 @@ -machine: - environment: - GODIST: "go1.7.1.linux-amd64.tar.gz" - services: - - docker - -dependencies: - override: - - sudo apt-get update; sudo apt-get install -y iptables zookeeperd - - go get golang.org/x/tools/cmd/goimports - - go get golang.org/x/tools/cmd/cover - - go get github.com/tools/godep - - go get github.com/golang/lint/golint - - go get github.com/mattn/goveralls - -test: - override: - - make circle-ci - diff --git a/vendor/src/github.com/docker/notary/circle.yml b/vendor/src/github.com/docker/notary/circle.yml deleted file mode 100644 index 091ed3d301..0000000000 --- a/vendor/src/github.com/docker/notary/circle.yml +++ /dev/null @@ -1,23 +0,0 @@ -machine: - pre: - # Upgrade docker - - curl -sSL https://s3.amazonaws.com/circle-downloads/install-circleci-docker.sh | bash -s -- 1.10.0 - # upgrade compose - - sudo pip install --upgrade docker-compose - - services: - - docker - -dependencies: - override: - - docker build -t notary_client . - -test: - override: - # circleci only supports manual parellism - - buildscripts/circle_parallelism.sh: - parallel: true - timeout: 600 - post: - - docker-compose -f docker-compose.yml down -v - - docker-compose -f docker-compose.rethink.yml down -v diff --git a/vendor/src/github.com/docker/notary/codecov.yml b/vendor/src/github.com/docker/notary/codecov.yml deleted file mode 100644 index 9f8a9fe9d8..0000000000 --- a/vendor/src/github.com/docker/notary/codecov.yml +++ /dev/null @@ -1,22 +0,0 @@ -codecov: - notify: - # 2 builds on circleci, 1 jenkins build - after_n_builds: 3 -coverage: - range: "50...100" - status: - # project will give us the diff in the total code coverage between a commit - # and its parent - project: - default: - target: auto - threshold: "0.05%" - # patch would give us the code coverage of the diff only - patch: false - # changes tells us if there are unexpected code coverage changes in other files - # which were not changed by the diff - changes: false - ignore: # ignore testutils for coverage - - "tuf/testutils/*" -comment: off - diff --git a/vendor/src/github.com/go-check/check/.travis.yml b/vendor/src/github.com/go-check/check/.travis.yml deleted file mode 100644 index ee77b0d878..0000000000 --- a/vendor/src/github.com/go-check/check/.travis.yml +++ /dev/null @@ -1,10 +0,0 @@ -language: go -go: - - 1.5 - - tip -script: - - go get -u github.com/golang/lint/golint - - # go vet ./... - - # test -z "$(golint ./... | tee /dev/stderr)" - - # test -z "$(gofmt -s -l . | tee /dev/stderr)" - - go test -v ./... diff --git a/vendor/src/github.com/gorilla/context/.travis.yml b/vendor/src/github.com/gorilla/context/.travis.yml deleted file mode 100644 index faca4dad3d..0000000000 --- a/vendor/src/github.com/gorilla/context/.travis.yml +++ /dev/null @@ -1,19 +0,0 @@ -language: go -sudo: false - -matrix: - include: - - go: 1.3 - - go: 1.4 - - go: 1.5 - - go: 1.6 - - go: tip - -install: - - go get golang.org/x/tools/cmd/vet - -script: - - go get -t -v ./... - - diff -u <(echo -n) <(gofmt -d .) - - go tool vet . - - go test -v -race ./... diff --git a/vendor/src/github.com/gorilla/mux/.travis.yml b/vendor/src/github.com/gorilla/mux/.travis.yml deleted file mode 100644 index 4dcdacb65f..0000000000 --- a/vendor/src/github.com/gorilla/mux/.travis.yml +++ /dev/null @@ -1,20 +0,0 @@ -language: go -sudo: false - -matrix: - include: - - go: 1.2 - - go: 1.3 - - go: 1.4 - - go: 1.5 - - go: 1.6 - - go: tip - -install: - - go get golang.org/x/tools/cmd/vet - -script: - - go get -t -v ./... - - diff -u <(echo -n) <(gofmt -d .) - - go tool vet . - - go test -v -race ./... diff --git a/vendor/src/github.com/hashicorp/go-immutable-radix/.travis.yml b/vendor/src/github.com/hashicorp/go-immutable-radix/.travis.yml deleted file mode 100644 index 1a0bbea6c7..0000000000 --- a/vendor/src/github.com/hashicorp/go-immutable-radix/.travis.yml +++ /dev/null @@ -1,3 +0,0 @@ -language: go -go: - - tip diff --git a/vendor/src/github.com/imdario/mergo/.travis.yml b/vendor/src/github.com/imdario/mergo/.travis.yml deleted file mode 100644 index 9d91c6339f..0000000000 --- a/vendor/src/github.com/imdario/mergo/.travis.yml +++ /dev/null @@ -1,2 +0,0 @@ -language: go -install: go get -t diff --git a/vendor/src/github.com/jmespath/go-jmespath/.travis.yml b/vendor/src/github.com/jmespath/go-jmespath/.travis.yml deleted file mode 100644 index 1f98077570..0000000000 --- a/vendor/src/github.com/jmespath/go-jmespath/.travis.yml +++ /dev/null @@ -1,9 +0,0 @@ -language: go - -sudo: false - -go: - - 1.4 - -install: go get -v -t ./... -script: make test diff --git a/vendor/src/github.com/mattn/go-shellwords/.travis.yml b/vendor/src/github.com/mattn/go-shellwords/.travis.yml deleted file mode 100644 index d0796cea69..0000000000 --- a/vendor/src/github.com/mattn/go-shellwords/.travis.yml +++ /dev/null @@ -1,9 +0,0 @@ -language: go -go: - - tip -before_install: - - go get github.com/axw/gocov/gocov - - go get github.com/mattn/goveralls - - go get golang.org/x/tools/cmd/cover -script: - - $HOME/gopath/bin/goveralls -repotoken 2FMhp57u8LcstKL9B190fLTcEnBtAAiEL diff --git a/vendor/src/github.com/mattn/go-sqlite3/.travis.yml b/vendor/src/github.com/mattn/go-sqlite3/.travis.yml deleted file mode 100644 index ac7bfea5cc..0000000000 --- a/vendor/src/github.com/mattn/go-sqlite3/.travis.yml +++ /dev/null @@ -1,9 +0,0 @@ -language: go -go: - - tip -before_install: - - go get github.com/axw/gocov/gocov - - go get github.com/mattn/goveralls - - go get golang.org/x/tools/cmd/cover -script: - - $HOME/gopath/bin/goveralls -repotoken 3qJVUE0iQwqnCbmNcDsjYu1nh4J4KIFXx diff --git a/vendor/src/github.com/miekg/dns/.travis.yml b/vendor/src/github.com/miekg/dns/.travis.yml deleted file mode 100644 index 0012f6ae4c..0000000000 --- a/vendor/src/github.com/miekg/dns/.travis.yml +++ /dev/null @@ -1,7 +0,0 @@ -language: go -sudo: false -go: - - 1.4 - - 1.5 -script: - - go test -race -v -bench=. diff --git a/vendor/src/github.com/miekg/pkcs11/.travis.yml b/vendor/src/github.com/miekg/pkcs11/.travis.yml deleted file mode 100644 index 477573388d..0000000000 --- a/vendor/src/github.com/miekg/pkcs11/.travis.yml +++ /dev/null @@ -1,14 +0,0 @@ -language: go -sudo: required -dist: trusty - -go: - - 1.5 - - 1.6 - -script: - - go test -v ./... - -before_script: - - sudo apt-get update - - sudo apt-get -y install libsofthsm diff --git a/vendor/src/github.com/mistifyio/go-zfs/.travis.yml b/vendor/src/github.com/mistifyio/go-zfs/.travis.yml deleted file mode 100644 index a8723a1933..0000000000 --- a/vendor/src/github.com/mistifyio/go-zfs/.travis.yml +++ /dev/null @@ -1,41 +0,0 @@ -language: go -sudo: required -dist: trusty - -branches: - only: - - master - -env: - - rel=0.6.4.2 - - rel=0.6.5.4 - -matrix: - allow_failures: - - env: rel=0.6.5.4 - -go: - - 1.5 - -before_install: - - MAKEFLAGS=-j$(($(grep -c '^processor' /proc/cpuinfo) * 2 + 1)) - - sudo apt-get update -y && sudo apt-get install -y linux-headers-$(uname -r) uuid-dev tree - - cd /tmp - - curl -L https://github.com/zfsonlinux/zfs/releases/download/zfs-$rel/spl-$rel.tar.gz | tar xz - - curl -L https://github.com/zfsonlinux/zfs/releases/download/zfs-$rel/zfs-$rel.tar.gz | tar xz - - (cd spl-$rel && ./configure --prefix=/usr && make && sudo make install) - - (cd zfs-$rel && ./configure --prefix=/usr && make && sudo make install) - - sudo modprobe zfs - - cd $TRAVIS_BUILD_DIR - - go get github.com/alecthomas/gometalinter - - gometalinter --install --update - -script: - - sudo -E $(which go) test -v ./... - - gometalinter --disable=golint --disable=vetshadow --enable=gofmt ./... || true - - gometalinter --disable-all --enable=golint --enable=vetshadow ./... || true - -notifications: - email: false - slack: - secure: "AbDJNjWyf/z+neX0HtoIUynjBcdvbhrsuyzoeaImZaanUtyo3cWNpA1M+5CApDQneaKbLqcehDBTjaLQD1fjXXtWrNvq+FgCRDJ1gvZasq13iJfYe3qtLz7n0YGHqEGzZ1lsheWtle/Sg32RlPAUZrHKWPciu7/Fg1k1ca8FsB4=" diff --git a/vendor/src/github.com/pborman/uuid/.travis.yml b/vendor/src/github.com/pborman/uuid/.travis.yml deleted file mode 100644 index a6a98db8a3..0000000000 --- a/vendor/src/github.com/pborman/uuid/.travis.yml +++ /dev/null @@ -1,10 +0,0 @@ -language: go - -go: - - 1.4.3 - - 1.5.3 - - release - - tip - -script: - - go test -v ./... diff --git a/vendor/src/github.com/pkg/errors/.travis.yml b/vendor/src/github.com/pkg/errors/.travis.yml deleted file mode 100644 index 024e28466e..0000000000 --- a/vendor/src/github.com/pkg/errors/.travis.yml +++ /dev/null @@ -1,10 +0,0 @@ -language: go -go_import_path: github.com/pkg/errors -go: - - 1.4.3 - - 1.5.4 - - 1.6.2 - - tip - -script: - - go test -v ./... diff --git a/vendor/src/github.com/pkg/errors/appveyor.yml b/vendor/src/github.com/pkg/errors/appveyor.yml deleted file mode 100644 index a932eade02..0000000000 --- a/vendor/src/github.com/pkg/errors/appveyor.yml +++ /dev/null @@ -1,32 +0,0 @@ -version: build-{build}.{branch} - -clone_folder: C:\gopath\src\github.com\pkg\errors -shallow_clone: true # for startup speed - -environment: - GOPATH: C:\gopath - -platform: - - x64 - -# http://www.appveyor.com/docs/installed-software -install: - # some helpful output for debugging builds - - go version - - go env - # pre-installed MinGW at C:\MinGW is 32bit only - # but MSYS2 at C:\msys64 has mingw64 - - set PATH=C:\msys64\mingw64\bin;%PATH% - - gcc --version - - g++ --version - -build_script: - - go install -v ./... - -test_script: - - set PATH=C:\gopath\bin;%PATH% - - go test -v ./... - -#artifacts: -# - path: '%GOPATH%\bin\*.exe' -deploy: off diff --git a/vendor/src/github.com/prometheus/procfs/.travis.yml b/vendor/src/github.com/prometheus/procfs/.travis.yml deleted file mode 100644 index 2b4554da58..0000000000 --- a/vendor/src/github.com/prometheus/procfs/.travis.yml +++ /dev/null @@ -1,5 +0,0 @@ -sudo: false -language: go -go: - - 1.5 - - 1.6 diff --git a/vendor/src/github.com/spf13/cobra/.travis.yml b/vendor/src/github.com/spf13/cobra/.travis.yml deleted file mode 100644 index 2bbf623121..0000000000 --- a/vendor/src/github.com/spf13/cobra/.travis.yml +++ /dev/null @@ -1,18 +0,0 @@ -language: go -go: - - 1.4.3 - - 1.5.4 - - 1.6.2 - - tip - -matrix: - allow_failures: - - go: tip - -before_install: - - mkdir -p bin - - curl -Lso bin/shellcheck https://github.com/caarlos0/shellcheck-docker/releases/download/v0.4.3/shellcheck - - chmod +x bin/shellcheck -script: - - PATH=$PATH:$PWD/bin go test -v ./... - - go build diff --git a/vendor/src/github.com/spf13/pflag/.travis.yml b/vendor/src/github.com/spf13/pflag/.travis.yml deleted file mode 100644 index 780c7ffb5b..0000000000 --- a/vendor/src/github.com/spf13/pflag/.travis.yml +++ /dev/null @@ -1,17 +0,0 @@ -sudo: false - -language: go - -go: - - 1.5 - - 1.6 - - tip - -install: - - go get github.com/golang/lint/golint - - export PATH=$GOPATH/bin:$PATH - - go install ./... - -script: - - verify/all.sh -v - - go test ./... diff --git a/vendor/src/github.com/vdemeester/shakers/circle.yml b/vendor/src/github.com/vdemeester/shakers/circle.yml deleted file mode 100644 index 0298aad0c8..0000000000 --- a/vendor/src/github.com/vdemeester/shakers/circle.yml +++ /dev/null @@ -1,11 +0,0 @@ -machine: - services: - - docker - -dependencies: - override: - - make validate - -test: - override: - - make test-unit diff --git a/vendor/src/github.com/vishvananda/netlink/.travis.yml b/vendor/src/github.com/vishvananda/netlink/.travis.yml deleted file mode 100644 index 73a0374c4f..0000000000 --- a/vendor/src/github.com/vishvananda/netlink/.travis.yml +++ /dev/null @@ -1,8 +0,0 @@ -language: go -before_script: - # make sure we keep path in tact when we sudo - - sudo sed -i -e 's/^Defaults\tsecure_path.*$//' /etc/sudoers - # modprobe ip_gre or else the first gre device can't be deleted - - sudo modprobe ip_gre -install: - - go get github.com/vishvananda/netns diff --git a/vendor/src/golang.org/x/oauth2/.travis.yml b/vendor/src/golang.org/x/oauth2/.travis.yml deleted file mode 100644 index a035125c35..0000000000 --- a/vendor/src/golang.org/x/oauth2/.travis.yml +++ /dev/null @@ -1,14 +0,0 @@ -language: go - -go: - - 1.3 - - 1.4 - -install: - - export GOPATH="$HOME/gopath" - - mkdir -p "$GOPATH/src/golang.org/x" - - mv "$TRAVIS_BUILD_DIR" "$GOPATH/src/golang.org/x/oauth2" - - go get -v -t -d golang.org/x/oauth2/... - -script: - - go test -v golang.org/x/oauth2/... diff --git a/vendor/src/google.golang.org/cloud/.travis.yml b/vendor/src/google.golang.org/cloud/.travis.yml deleted file mode 100644 index c037df0de0..0000000000 --- a/vendor/src/google.golang.org/cloud/.travis.yml +++ /dev/null @@ -1,11 +0,0 @@ -sudo: false -language: go -go: -- 1.4 -- 1.5 -install: -- go get -v google.golang.org/cloud/... -script: -- openssl aes-256-cbc -K $encrypted_912ff8fa81ad_key -iv $encrypted_912ff8fa81ad_iv -in key.json.enc -out key.json -d -- GCLOUD_TESTS_GOLANG_PROJECT_ID="dulcet-port-762" GCLOUD_TESTS_GOLANG_KEY="$(pwd)/key.json" - go test -v -tags=integration google.golang.org/cloud/... diff --git a/vendor/src/google.golang.org/grpc/.travis.yml b/vendor/src/google.golang.org/grpc/.travis.yml deleted file mode 100644 index d7108cd645..0000000000 --- a/vendor/src/google.golang.org/grpc/.travis.yml +++ /dev/null @@ -1,21 +0,0 @@ -language: go - -go: - - 1.5.4 - - 1.6.3 - -go_import_path: google.golang.org/grpc - -before_install: - - go get golang.org/x/tools/cmd/goimports - - go get github.com/golang/lint/golint - - go get github.com/axw/gocov/gocov - - go get github.com/mattn/goveralls - - go get golang.org/x/tools/cmd/cover - -script: - - '! gofmt -s -d -l . 2>&1 | read' - - '! goimports -l . | read' - - '! golint ./... | grep -vE "(_string|\.pb)\.go:"' - - '! go tool vet -all . 2>&1 | grep -vE "constant [0-9]+ not a string in call to Errorf"' - - make test testrace diff --git a/vendor/src/gopkg.in/fsnotify.v1/.travis.yml b/vendor/src/gopkg.in/fsnotify.v1/.travis.yml deleted file mode 100644 index 00fd5dd30c..0000000000 --- a/vendor/src/gopkg.in/fsnotify.v1/.travis.yml +++ /dev/null @@ -1,29 +0,0 @@ -sudo: false -language: go - -go: - - 1.5.4 - - 1.6.1 - - tip - -matrix: - allow_failures: - - go: tip - -before_script: - - go get -u github.com/golang/lint/golint - -script: - - go test -v --race ./... - -after_script: - - test -z "$(gofmt -s -l -w . | tee /dev/stderr)" - - test -z "$(golint ./... | tee /dev/stderr)" - - go vet ./... - -os: - - linux - - osx - -notifications: - email: false