mirror of https://github.com/grpc/grpc-java.git
Suggest -PskipCodegen in run-test-{client,server}
Just helps new users wanting to try things out from thinking they need to deal with compiling our protoc plugin. As seen in #581
This commit is contained in:
parent
af9fb6de77
commit
05f5a4fb3b
|
@ -1,7 +1,9 @@
|
||||||
#!/bin/bash -e
|
#!/bin/bash -e
|
||||||
cd "$(dirname "$0")"
|
cd "$(dirname "$0")"
|
||||||
cat >&2 <<EOF
|
cat >&2 <<EOF
|
||||||
Gradle is no longer run automatically. Make sure to run './gradlew installDist' or
|
Gradle is no longer run automatically. Make sure to run
|
||||||
'./gradlew :grpc-interop-testing:installDist' after any changes.
|
'./gradlew installDist -PskipCodegen=true' or
|
||||||
|
'./gradlew :grpc-interop-testing:installDist -PskipCodegen' after any changes.
|
||||||
|
-PskipCodegen=true is optional, but requires less setup.
|
||||||
EOF
|
EOF
|
||||||
exec ./interop-testing/build/install/grpc-interop-testing/bin/test-client "$@"
|
exec ./interop-testing/build/install/grpc-interop-testing/bin/test-client "$@"
|
||||||
|
|
|
@ -1,7 +1,9 @@
|
||||||
#!/bin/bash -e
|
#!/bin/bash -e
|
||||||
cd "$(dirname "$0")"
|
cd "$(dirname "$0")"
|
||||||
cat >&2 <<EOF
|
cat >&2 <<EOF
|
||||||
Gradle is no longer run automatically. Make sure to run './gradlew installDist' or
|
Gradle is no longer run automatically. Make sure to run
|
||||||
'./gradlew :grpc-interop-testing:installDist' after any changes.
|
'./gradlew installDist -PskipCodegen=true' or
|
||||||
|
'./gradlew :grpc-interop-testing:installDist -PskipCodegen' after any changes.
|
||||||
|
-PskipCodegen=true is optional, but requires less setup.
|
||||||
EOF
|
EOF
|
||||||
exec ./interop-testing/build/install/grpc-interop-testing/bin/test-server "$@"
|
exec ./interop-testing/build/install/grpc-interop-testing/bin/test-server "$@"
|
||||||
|
|
Loading…
Reference in New Issue