You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by am...@apache.org on 2020/07/30 23:23:38 UTC

[beam] branch master updated: remove redundent precommits.

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

amaliujia 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 b6ac20d  remove redundent precommits.
     new 4885e20  Merge pull request #12417 from amaliujia/rw-remove-precommits
b6ac20d is described below

commit b6ac20d9ad579a55a9e9bd2dfc54ffcae3137c26
Author: amaliujia <am...@163.com>
AuthorDate: Wed Jul 29 12:00:31 2020 -0700

    remove redundent precommits.
---
 .../jenkins/job_PreCommit_BeamSQL_ZetaSQL.groovy   | 36 -------------------
 .../job_PreCommit_BeamSQL_ZetaSQL_Java11.groovy    | 41 ----------------------
 2 files changed, 77 deletions(-)

diff --git a/.test-infra/jenkins/job_PreCommit_BeamSQL_ZetaSQL.groovy b/.test-infra/jenkins/job_PreCommit_BeamSQL_ZetaSQL.groovy
deleted file mode 100644
index 2aa89c2..0000000
--- a/.test-infra/jenkins/job_PreCommit_BeamSQL_ZetaSQL.groovy
+++ /dev/null
@@ -1,36 +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 PrecommitJobBuilder
-
-PrecommitJobBuilder builder = new PrecommitJobBuilder(
-    scope: this,
-    nameBase: 'JavaBeamZetaSQL',
-    gradleTask: ':javaPreCommitBeamZetaSQL',
-    gradleSwitches: [
-      '-PdisableSpotlessCheck=true'
-    ], // spotless checked in separate pre-commit
-    triggerPathPatterns: [
-      '^sdks/java/extensions/sql/.*$',
-    ]
-    )
-builder.build {
-  publishers {
-    archiveJunit('**/build/test-results/**/*.xml')
-  }
-}
diff --git a/.test-infra/jenkins/job_PreCommit_BeamSQL_ZetaSQL_Java11.groovy b/.test-infra/jenkins/job_PreCommit_BeamSQL_ZetaSQL_Java11.groovy
deleted file mode 100644
index 7efe77d..0000000
--- a/.test-infra/jenkins/job_PreCommit_BeamSQL_ZetaSQL_Java11.groovy
+++ /dev/null
@@ -1,41 +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 PrecommitJobBuilder
-import CommonJobProperties as properties
-
-PrecommitJobBuilder builder = new PrecommitJobBuilder(
-    scope: this,
-    nameBase: 'JavaBeamZetaSQLJava11',
-    gradleTask: ':javaPreCommitBeamZetaSQL',
-    gradleSwitches: [
-      '-PdisableSpotlessCheck=true',
-      '-PcompileAndRunTestsWithJava11',
-      '-PskipCheckerFramework',
-      // Gradle itself is running under JDK8 so plugin configures wrong for JDK11
-      "-Pjava11Home=${CommonJobProperties.JAVA_11_HOME}"
-    ], // spotless checked in separate pre-commit
-    triggerPathPatterns: [
-      '^sdks/java/extensions/sql/.*$',
-    ]
-    )
-builder.build {
-  publishers {
-    archiveJunit('**/build/test-results/**/*.xml')
-  }
-}