git subrepo clone (merge) https://github.com/kubernetes-incubator/metrics-server.git metrics-server
subrepo:
subdir: "metrics-server"
merged: "92d8412"
upstream:
origin: "https://github.com/kubernetes-incubator/metrics-server.git"
branch: "master"
commit: "92d8412"
git-subrepo:
version: "0.4.0"
origin: "???"
commit: "???"
diff --git a/metrics-server/vendor/google.golang.org/grpc/.travis.yml b/metrics-server/vendor/google.golang.org/grpc/.travis.yml
new file mode 100644
index 0000000..3c2621a
--- /dev/null
+++ b/metrics-server/vendor/google.golang.org/grpc/.travis.yml
@@ -0,0 +1,24 @@
+language: go
+
+go:
+ - 1.6.x
+ - 1.7.x
+ - 1.8.x
+ - 1.9.x
+ - 1.10.x
+
+matrix:
+ include:
+ - go: 1.10.x
+ env: RUN386=1
+
+go_import_path: google.golang.org/grpc
+
+before_install:
+ - if [[ -n "$RUN386" ]]; then export GOARCH=386; fi
+ - if [[ "$TRAVIS_GO_VERSION" = 1.10* && "$GOARCH" != "386" ]]; then ./vet.sh -install || exit 1; fi
+
+script:
+ - if [[ "$TRAVIS_GO_VERSION" = 1.10* && "$GOARCH" != "386" ]]; then ./vet.sh || exit 1; fi
+ - make test || exit 1
+ - if [[ "$GOARCH" != "386" ]]; then make testrace; fi