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

scott pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/master by this push:
     new 139d29a  [BEAM-5449] Adding Groovy file for ULR VR PostCommit. (#7680)
139d29a is described below

commit 139d29ac0211baa92da1bc9298faf8fc00e5c59e
Author: Daniel Oliveira <youngho...@gmail.com>
AuthorDate: Mon Feb 11 10:17:22 2019 -0800

    [BEAM-5449] Adding Groovy file for ULR VR PostCommit. (#7680)
---
 ...t_Java_PortableValidatesRunner_Reference.groovy | 47 ++++++++++++++++++++++
 1 file changed, 47 insertions(+)

diff --git 
a/.test-infra/jenkins/job_PostCommit_Java_PortableValidatesRunner_Reference.groovy
 
b/.test-infra/jenkins/job_PostCommit_Java_PortableValidatesRunner_Reference.groovy
new file mode 100644
index 0000000..bd3f3b4
--- /dev/null
+++ 
b/.test-infra/jenkins/job_PostCommit_Java_PortableValidatesRunner_Reference.groovy
@@ -0,0 +1,47 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import CommonJobProperties as commonJobProperties
+import PostcommitJobBuilder
+
+// This job runs the suite of ValidatesRunner tests against the Java Reference
+// Runner.
+PostcommitJobBuilder.postCommitJob('beam_PostCommit_Java_PVR_Reference',
+    'Run Java Reference Runner PortableValidatesRunner',
+    'Java Reference Runner PortableValidatesRunner Tests',
+    this) {
+  description(
+      'Runs the Java PortableValidatesRunner suite on the Reference Runner.')
+
+  // Set common parameters.
+  commonJobProperties.setTopLevelMainJobProperties(delegate)
+
+  // Publish all test results to Jenkins
+  publishers {
+    archiveJunit('**/build/test-results/**/*.xml')
+  }
+
+  // Gradle goals for this job.
+  steps {
+    gradle {
+      rootBuildScriptDir(commonJobProperties.checkoutDir)
+      tasks(':beam-runners-direct-java:validatesPortableRunner')
+      commonJobProperties.setGradleSwitches(delegate)
+    }
+  }
+}

Reply via email to