From 6c24b6f0234a2ed898d78e79e5e4291b684d9af9 Mon Sep 17 00:00:00 2001 From: Jihoon Son Date: Thu, 4 Feb 2021 15:01:47 -0800 Subject: [PATCH] Build distribution separately (#10841) --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index ffb6c1dbd99..1a5a3f63d4e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -41,7 +41,7 @@ addons: # Add various options to make 'mvn install' fast and skip javascript compile (-Ddruid.console.skip=true) since it is not # needed. Depending on network speeds, "mvn -q install" may take longer than the default 10 minute timeout to print any # output. To compensate, use travis_wait to extend the timeout. -install: MAVEN_OPTS='-Xmx3000m' travis_wait 15 ${MVN} clean install -q -ff ${MAVEN_SKIP} ${MAVEN_SKIP_TESTS} -T1C +install: MAVEN_OPTS='-Xmx3000m' travis_wait 15 ${MVN} clean install -q -ff -pl '!distribution' ${MAVEN_SKIP} ${MAVEN_SKIP_TESTS} -T1C && ${MVN} install -q -ff -pl 'distribution' ${MAVEN_SKIP} ${MAVEN_SKIP_TESTS} stages: - name: test # jobs that do not specify a stage get this default value