You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by lc...@apache.org on 2016/10/06 18:01:55 UTC

[1/2] incubator-beam git commit: Fix Precommit Integration Test Failure

Repository: incubator-beam
Updated Branches:
  refs/heads/master f554398bc -> 0ddba6d8d


Fix Precommit Integration Test Failure


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

Branch: refs/heads/master
Commit: f5aa6eb73cb475714dc5d7b1b959329023fa5672
Parents: f554398
Author: Mark Liu <ma...@markliu-macbookpro.roam.corp.google.com>
Authored: Wed Oct 5 17:50:05 2016 -0700
Committer: Luke Cwik <lc...@google.com>
Committed: Thu Oct 6 10:55:21 2016 -0700

----------------------------------------------------------------------
 examples/java/pom.xml | 79 +++++++++-------------------------------------
 1 file changed, 15 insertions(+), 64 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/f5aa6eb7/examples/java/pom.xml
----------------------------------------------------------------------
diff --git a/examples/java/pom.xml b/examples/java/pom.xml
index 0dd8d6d..1923366 100644
--- a/examples/java/pom.xml
+++ b/examples/java/pom.xml
@@ -117,7 +117,6 @@
     <profile>
       <id>jenkins-precommit</id>
       <properties>
-        <it.test>WordCountIT</it.test>
         <skipITs>false</skipITs>
         <skipDefaultIT>true</skipDefaultIT>
       </properties>
@@ -138,12 +137,17 @@
                   <goal>verify</goal>
                 </goals>
                 <configuration>
+                  <includes>
+                    <include>WordCountIT.java</include>
+                    <include>WindowedWordCountIT.java</include>
+                  </includes>
                   <parallel>all</parallel>
                   <threadCount>4</threadCount>
                   <systemPropertyVariables>
                     <beamTestPipelineOptions>
                       [
                       "--project=apache-beam-testing",
+                      "--tempLocation=gs://temp-storage-for-end-to-end-tests",
                       "--tempRoot=gs://temp-storage-for-end-to-end-tests",
                       "--runner=org.apache.beam.runners.direct.DirectRunner"
                       ]
@@ -158,6 +162,9 @@
                   <goal>verify</goal>
                 </goals>
                 <configuration>
+                  <includes>
+                    <include>WordCountIT.java</include>
+                  </includes>
                   <parallel>all</parallel>
                   <threadCount>4</threadCount>
                   <systemPropertyVariables>
@@ -178,6 +185,9 @@
                   <goal>verify</goal>
                 </goals>
                 <configuration>
+                  <includes>
+                    <include>WordCountIT.java</include>
+                  </includes>
                   <parallel>all</parallel>
                   <threadCount>4</threadCount>
                   <systemPropertyVariables>
@@ -198,6 +208,10 @@
                   <goal>verify</goal>
                 </goals>
                 <configuration>
+                  <includes>
+                    <include>WordCountIT.java</include>
+                    <include>WindowedWordCountIT.java</include>
+                  </includes>
                   <parallel>all</parallel>
                   <threadCount>4</threadCount>
                   <systemPropertyVariables>
@@ -244,69 +258,6 @@
         </plugins>
       </build>
     </profile>
-
-    <profile>
-      <id>jenkins-precommit-streaming</id>
-      <properties>
-        <it.test>WindowedWordCountIT</it.test>
-        <skipITs>false</skipITs>
-        <skipDefaultIT>true</skipDefaultIT>
-      </properties>
-      <build>
-        <plugins>
-          <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-failsafe-plugin</artifactId>
-            <configuration>
-              <useManifestOnlyJar>false</useManifestOnlyJar>
-              <redirectTestOutputToFile>true</redirectTestOutputToFile>
-            </configuration>
-            <executions>
-              <execution>
-                <id>direct-runner-integration-tests</id>
-                <goals>
-                  <goal>integration-test</goal>
-                  <goal>verify</goal>
-                </goals>
-                <configuration>
-                  <parallel>all</parallel>
-                  <threadCount>4</threadCount>
-                  <systemPropertyVariables>
-                    <beamTestPipelineOptions>
-                      [
-                      "--project=apache-beam-testing",
-                      "--tempLocation=gs://temp-storage-for-end-to-end-tests",
-                      "--runner=org.apache.beam.runners.direct.DirectRunner"
-                      ]
-                    </beamTestPipelineOptions>
-                  </systemPropertyVariables>
-                </configuration>
-              </execution>
-              <execution>
-                <id>dataflow-runner-integration-tests</id>
-                <goals>
-                  <goal>integration-test</goal>
-                  <goal>verify</goal>
-                </goals>
-                <configuration>
-                  <parallel>all</parallel>
-                  <threadCount>4</threadCount>
-                  <systemPropertyVariables>
-                    <beamTestPipelineOptions>
-                      [
-                      "--project=apache-beam-testing",
-                      "--tempRoot=gs://temp-storage-for-end-to-end-tests",
-                      "--runner=org.apache.beam.runners.dataflow.testing.TestDataflowRunner"
-                      ]
-                    </beamTestPipelineOptions>
-                  </systemPropertyVariables>
-                </configuration>
-              </execution>
-            </executions>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
   </profiles>
 
   <build>


[2/2] incubator-beam git commit: Fix Streaming Integration Test Failure in Precommit

Posted by lc...@apache.org.
Fix Streaming Integration Test Failure in Precommit

This closes #1059


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

Branch: refs/heads/master
Commit: 0ddba6d8d2e2d9ea9586615e5ed0d495f12086e5
Parents: f554398 f5aa6eb
Author: Luke Cwik <lc...@google.com>
Authored: Thu Oct 6 10:55:57 2016 -0700
Committer: Luke Cwik <lc...@google.com>
Committed: Thu Oct 6 10:55:57 2016 -0700

----------------------------------------------------------------------
 examples/java/pom.xml | 79 +++++++++-------------------------------------
 1 file changed, 15 insertions(+), 64 deletions(-)
----------------------------------------------------------------------