Skip to content

Commit

Permalink
Update tests.sh to skip the Kotlin tests on Oracle 7
Browse files Browse the repository at this point in the history
  • Loading branch information
acozzette committed May 12, 2021
1 parent a4866d3 commit 5a9367a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,13 @@ build_java() {
# Java build needs `protoc`.
internal_build_cpp
cp -r java $dir
cd $dir && $MVN clean && $MVN test
cd $dir && $MVN clean
# Skip the Kotlin tests on Oracle 7
if [ "$version" == "oracle7" ]; then
$MVN test -pl bom,lite,core,util
else
$MVN test
fi
cd ../..
}

Expand Down

0 comments on commit 5a9367a

Please sign in to comment.