You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bookkeeper.apache.org by si...@apache.org on 2018/06/04 21:01:22 UTC

[bookkeeper] 01/10: Build stream modules for integration tests

This is an automated email from the ASF dual-hosted git repository.

sijie pushed a commit to branch branch-4.7
in repository https://gitbox.apache.org/repos/asf/bookkeeper.git

commit 8ab854f283bb0aa6f04de806b80faf7b1162808a
Author: Sijie Guo <si...@apache.org>
AuthorDate: Tue May 22 00:27:46 2018 -0700

    Build stream modules for integration tests
    
    Descriptions of the changes in this PR:
    
    *Motivation*
    
    apache/bookkeeper#1422 adds table service as part of integration tests. so we need to build stream modules
    in order to run integration tests for apache/bookkeeper#1422
    
    *Solution*
    
    Add "-Dstream" in the maven commands for `precommit-integrationtests` CI job.
    
    Author: Sijie Guo <si...@apache.org>
    
    Reviewers: Jia Zhai <None>
    
    This closes #1424 from sijie/compile_stream_module
---
 .test-infra/jenkins/job_bookkeeper_precommit_integrationtests.groovy | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.test-infra/jenkins/job_bookkeeper_precommit_integrationtests.groovy b/.test-infra/jenkins/job_bookkeeper_precommit_integrationtests.groovy
index b7b0344..094edb1 100644
--- a/.test-infra/jenkins/job_bookkeeper_precommit_integrationtests.groovy
+++ b/.test-infra/jenkins/job_bookkeeper_precommit_integrationtests.groovy
@@ -49,7 +49,7 @@ freeStyleJob('bookkeeper_precommit_integrationtests') {
             // Set Maven parameters.
             common_job_properties.setMavenConfig(delegate)
 
-            goals('-B clean install -Pdocker')
+            goals('-B clean install -Dstream -Pdocker')
             properties(skipTests: true, interactiveMode: false)
         }
 
@@ -57,7 +57,7 @@ freeStyleJob('bookkeeper_precommit_integrationtests') {
             // Set Maven parameters.
             common_job_properties.setMavenConfig(delegate)
             rootPOM('tests/pom.xml')
-            goals('-B test -DintegrationTests')
+            goals('-B test -Dstream -DintegrationTests')
         }
 
         shell('kill $(cat docker-log.pid) || true')

-- 
To stop receiving notification emails like this one, please contact
sijie@apache.org.