You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by pa...@apache.org on 2019/03/21 18:40:44 UTC

[beam] branch master updated: [BEAM-6880] Remove deprecated Reference Runner PostCommit from Jenkins.

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

pabloem 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 6cf2a5e  [BEAM-6880] Remove deprecated Reference Runner PostCommit from Jenkins.
     new 54129cf  Merge pull request #8112 from youngoli/beam6880
6cf2a5e is described below

commit 6cf2a5e3bdfcfa110232b99ba9f39f52dfab3e91
Author: Daniel Oliveira <da...@gmail.com>
AuthorDate: Thu Mar 21 11:01:08 2019 -0700

    [BEAM-6880] Remove deprecated Reference Runner PostCommit from Jenkins.
    
    Removing the Java PostCommit for the Reference Runner since it's deprecated.
---
 ...t_Java_PortableValidatesRunner_Reference.groovy | 47 ----------------------
 1 file changed, 47 deletions(-)

diff --git a/.test-infra/jenkins/job_PostCommit_Java_PortableValidatesRunner_Reference.groovy b/.test-infra/jenkins/job_PostCommit_Java_PortableValidatesRunner_Reference.groovy
deleted file mode 100644
index bd3f3b4..0000000
--- a/.test-infra/jenkins/job_PostCommit_Java_PortableValidatesRunner_Reference.groovy
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
- * 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)
-    }
-  }
-}