aboutsummaryrefslogtreecommitdiff
path: root/vendor/google.golang.org/grpc/Makefile
diff options
context:
space:
mode:
authorNiall Sheridan <nsheridan@gmail.com>2018-08-09 23:29:20 +0100
committerNiall Sheridan <nsheridan@gmail.com>2018-08-09 23:43:59 +0100
commit347c11ec42264c579eb3f19494e4f75ab8bb8f0d (patch)
tree0171d2a9bcd67e7b9f6a78bbf6af4627e59f5aa1 /vendor/google.golang.org/grpc/Makefile
parent9f8f0194a3c21e640a5b917f86bf204c014d730d (diff)
Remove gRPC
This hasn't been enabled in a while due to gRPC limitations
Diffstat (limited to 'vendor/google.golang.org/grpc/Makefile')
-rw-r--r--vendor/google.golang.org/grpc/Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/vendor/google.golang.org/grpc/Makefile b/vendor/google.golang.org/grpc/Makefile
index 6f393a8..5045453 100644
--- a/vendor/google.golang.org/grpc/Makefile
+++ b/vendor/google.golang.org/grpc/Makefile
@@ -9,6 +9,9 @@ updatedeps:
testdeps:
go get -d -v -t google.golang.org/grpc/...
+testgaedeps:
+ goapp get -d -v -t -tags 'appengine appenginevm' google.golang.org/grpc/...
+
updatetestdeps:
go get -d -v -t -u -f google.golang.org/grpc/...
@@ -31,6 +34,9 @@ test: testdeps
testrace: testdeps
go test -race -cpu 1,4 -timeout 7m google.golang.org/grpc/...
+testappengine: testgaedeps
+ goapp test -cpu 1,4 -timeout 5m google.golang.org/grpc/...
+
clean:
go clean -i google.golang.org/grpc/...
@@ -39,6 +45,7 @@ clean:
deps \
updatedeps \
testdeps \
+ testgaedeps \
updatetestdeps \
build \
proto \