Merge pull request #8762 from deannagarcia/fixUtilBug

Fix failing java7 linux test
This commit is contained in:
deannagarcia 2021-06-25 10:13:43 -07:00 committed by GitHub
commit 318a48ac25
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -226,8 +226,13 @@ build_java_with_conformance_tests() {
# This local installation avoids the problem caused by a new version not yet in Maven Central
cd java/bom && $MVN install
cd ../..
cd java && $MVN test && $MVN install
cd util && $MVN package assembly:single
cd java/core && $MVN test && $MVN install
cd ../lite && $MVN test && $MVN install
cd ../util && $MVN test && $MVN install && $MVN package assembly:single
if [ "$version" == "jdk8" ]; then
cd ../kotlin && $MVN test && $MVN install
cd ../kotlin-lite && $MVN test && $MVN install
fi
cd ../..
cd conformance && make test_java && cd ..
}