You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by ke...@apache.org on 2017/11/07 21:46:58 UTC

[2/3] beam git commit: Remove extraneous runner profiles from non-IT steps of pipeline build

Remove extraneous runner profiles from non-IT steps of pipeline build


Project: http://git-wip-us.apache.org/repos/asf/beam/repo
Commit: http://git-wip-us.apache.org/repos/asf/beam/commit/6339b40a
Tree: http://git-wip-us.apache.org/repos/asf/beam/tree/6339b40a
Diff: http://git-wip-us.apache.org/repos/asf/beam/diff/6339b40a

Branch: refs/heads/master
Commit: 6339b40ab41f0e4964366ce3f8ea234b4c6ebedb
Parents: 51c782a
Author: Kenneth Knowles <ke...@apache.org>
Authored: Tue Nov 7 09:09:33 2017 -0800
Committer: Kenneth Knowles <ke...@apache.org>
Committed: Tue Nov 7 09:09:33 2017 -0800

----------------------------------------------------------------------
 .test-infra/jenkins/job_beam_Java_Build.groovy    | 8 --------
 .test-infra/jenkins/job_beam_Java_UnitTest.groovy | 8 --------
 2 files changed, 16 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/beam/blob/6339b40a/.test-infra/jenkins/job_beam_Java_Build.groovy
----------------------------------------------------------------------
diff --git a/.test-infra/jenkins/job_beam_Java_Build.groovy b/.test-infra/jenkins/job_beam_Java_Build.groovy
index 704d7eb..87aa98d 100644
--- a/.test-infra/jenkins/job_beam_Java_Build.groovy
+++ b/.test-infra/jenkins/job_beam_Java_Build.groovy
@@ -44,17 +44,9 @@ mavenJob('beam_Java_Build') {
   }
 
   // Construct Maven goals for this job.
-  profiles = [
-    'direct-runner',
-    'dataflow-runner',
-    'spark-runner',
-    'flink-runner',
-    'apex-runner'
-  ]
   args = [
     '-B',
     '-e',
-    "-P${profiles.join(',')}",
     'clean',
     'install',
     "-pl '!sdks/python,!sdks/java/javadoc'",

http://git-wip-us.apache.org/repos/asf/beam/blob/6339b40a/.test-infra/jenkins/job_beam_Java_UnitTest.groovy
----------------------------------------------------------------------
diff --git a/.test-infra/jenkins/job_beam_Java_UnitTest.groovy b/.test-infra/jenkins/job_beam_Java_UnitTest.groovy
index d3c8ed7..e558eea 100644
--- a/.test-infra/jenkins/job_beam_Java_UnitTest.groovy
+++ b/.test-infra/jenkins/job_beam_Java_UnitTest.groovy
@@ -28,17 +28,9 @@ mavenJob('beam_Java_UnitTest') {
   common_job_properties.setPipelineDownstreamJobProperties(delegate, 'beam_Java_Build')
 
   // Construct Maven goals for this job.
-  profiles = [
-    'direct-runner',
-    'dataflow-runner',
-    'spark-runner',
-    'flink-runner',
-    'apex-runner'
-  ]
   args = [
     '-B',
     '-e',
-    "-P${profiles.join(',')}",
     'surefire:test@default-test',
     "-pl '!sdks/python'",
     '-DrepoToken=$COVERALLS_REPO_TOKEN',