Skip to content

Commit

Permalink
AVRO-1897 ADDENDUM: Install all Java artifacts during test build.
Browse files Browse the repository at this point in the history
The interop tests need the root POM installed to pass, so install all
build artifacts since other modules and tests depend on Java.
  • Loading branch information
rdblue committed Nov 6, 2016
1 parent bec6349 commit 7ec35ea
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 7ec35ea

Please sign in to comment.