mirror of https://github.com/grpc/grpc-java.git
buildscripts: make the script fail for the right reason when using set -e (#3628)
This commit is contained in:
parent
bbe81d0870
commit
d840227165
|
|
@ -29,7 +29,9 @@ echo "errorProne=true" >> $HOME/.gradle/gradle.properties
|
|||
|
||||
# Run tests
|
||||
./gradlew assemble generateTestProto install
|
||||
pushd examples && ./gradlew build && popd
|
||||
# --batch-mode reduces logspam
|
||||
pushd examples && mvn verify --batch-mode && popd
|
||||
pushd examples
|
||||
./gradlew build
|
||||
# --batch-mode reduces log spam
|
||||
mvn verify --batch-mode
|
||||
popd
|
||||
# TODO(zpencer): also build the GAE examples
|
||||
|
|
|
|||
Loading…
Reference in New Issue