Repository: avro Updated Branches: refs/heads/branch-1.8 bec6349f4 -> 7ec35ea24
AVRO-1897 ADDENDUM: Install all Java artifacts during test build. The interop tests need the root POM installed to pass, so install all build artifacts since other modules and tests depend on Java. Project: http://git-wip-us.apache.org/repos/asf/avro/repo Commit: http://git-wip-us.apache.org/repos/asf/avro/commit/7ec35ea2 Tree: http://git-wip-us.apache.org/repos/asf/avro/tree/7ec35ea2 Diff: http://git-wip-us.apache.org/repos/asf/avro/diff/7ec35ea2 Branch: refs/heads/branch-1.8 Commit: 7ec35ea24ff0270586a26afbc6f6f530d272d1f7 Parents: bec6349 Author: Ryan Blue <[email protected]> Authored: Sun Nov 6 13:00:52 2016 -0800 Committer: Ryan Blue <[email protected]> Committed: Sun Nov 6 13:00:52 2016 -0800 ---------------------------------------------------------------------- build.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/avro/blob/7ec35ea2/build.sh ---------------------------------------------------------------------- diff --git a/build.sh b/build.sh index 14f3149..255e46a 100755 --- a/build.sh +++ b/build.sh @@ -40,7 +40,8 @@ do test) # run lang-specific tests (cd lang/java; ./build.sh test) - (cd lang/java; ./build.sh test; mvn install -pl tools -am -DskipTests) + # install java artifacts required by other builds and interop tests + mvn install -DskipTests (cd lang/py; ./build.sh test) (cd lang/py3; ./build.sh test) (cd lang/c; ./build.sh test)
