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:57 UTC

[1/3] beam git commit: Remove extraneous profiles from Python build

Repository: beam
Updated Branches:
  refs/heads/master 13bd266a6 -> b761f80a0


Remove extraneous profiles from Python build


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

Branch: refs/heads/master
Commit: 51c782ae14bc4ed8505fbf518c8b3c150b6acaff
Parents: 3dfcb44
Author: Kenneth Knowles <ke...@apache.org>
Authored: Tue Nov 7 09:07:38 2017 -0800
Committer: Kenneth Knowles <ke...@apache.org>
Committed: Tue Nov 7 09:07:38 2017 -0800

----------------------------------------------------------------------
 ...ob_beam_PreCommit_Python_MavenInstall.groovy | 27 ++++++++++----------
 1 file changed, 14 insertions(+), 13 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/beam/blob/51c782ae/.test-infra/jenkins/job_beam_PreCommit_Python_MavenInstall.groovy
----------------------------------------------------------------------
diff --git a/.test-infra/jenkins/job_beam_PreCommit_Python_MavenInstall.groovy b/.test-infra/jenkins/job_beam_PreCommit_Python_MavenInstall.groovy
index feadb89..f0429e4 100644
--- a/.test-infra/jenkins/job_beam_PreCommit_Python_MavenInstall.groovy
+++ b/.test-infra/jenkins/job_beam_PreCommit_Python_MavenInstall.groovy
@@ -40,17 +40,18 @@ mavenJob('beam_PreCommit_Python_MavenInstall') {
   // Sets that this is a PreCommit job.
   common_job_properties.setPreCommit(delegate, 'mvn clean install -pl sdks/python -am -amd', 'Run Python PreCommit')
 
-  // Maven goals for this job: The Python SDK, its dependencies, and things that depend on it.
-  goals('''\
-    --batch-mode \
-    --errors \
-    --activate-profiles release,jenkins-precommit,direct-runner,dataflow-runner,spark-runner,flink-runner,apex-runner \
-    --projects sdks/python,!sdks/python/container \
-    --also-make \
-    --also-make-dependents \
-    -D pullRequest=$ghprbPullId \
-    help:effective-settings \
-    clean \
-    install
-  ''')
+  // Maven modules for this job: The Python SDK, its dependencies, and things that depend on it,
+  // excluding the container.
+  goals([
+    '--batch-mode',
+    '--errors',
+    '--activate-profiles release',
+    '--projects sdks/python,!sdks/python/container',
+    '--also-make',
+    '--also-make-dependents',
+    '-D pullRequest=$ghprbPullId',
+    'help:effective-settings',
+    'clean',
+    'install',
+  ].join(' '))
 }


[3/3] beam git commit: This closes #4093: Remove extraneous use of runner profiles

Posted by ke...@apache.org.
This closes #4093: Remove extraneous use of runner profiles

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


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

Branch: refs/heads/master
Commit: b761f80a05dba39bdb33d15a740dcead629b7f0a
Parents: 13bd266 6339b40
Author: Kenneth Knowles <ke...@apache.org>
Authored: Tue Nov 7 13:46:35 2017 -0800
Committer: Kenneth Knowles <ke...@apache.org>
Committed: Tue Nov 7 13:46:35 2017 -0800

----------------------------------------------------------------------
 .test-infra/jenkins/job_beam_Java_Build.groovy  |  8 ------
 .../jenkins/job_beam_Java_UnitTest.groovy       |  8 ------
 ...ob_beam_PreCommit_Python_MavenInstall.groovy | 27 ++++++++++----------
 3 files changed, 14 insertions(+), 29 deletions(-)
----------------------------------------------------------------------



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

Posted by ke...@apache.org.
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',