You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by yh...@apache.org on 2023/02/22 22:26:38 UTC

[beam] branch master updated: Apply shallow clone for jenkins (#25595)

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

yhu 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 011296c1465 Apply shallow clone for jenkins (#25595)
011296c1465 is described below

commit 011296c14659f80c8ecbeefda79ecc3f1113bd95
Author: Yi Hu <ya...@google.com>
AuthorDate: Wed Feb 22 17:26:31 2023 -0500

    Apply shallow clone for jenkins (#25595)
---
 .test-infra/jenkins/CommonJobProperties.groovy | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/.test-infra/jenkins/CommonJobProperties.groovy b/.test-infra/jenkins/CommonJobProperties.groovy
index 768373c4d47..24653bcc4ba 100644
--- a/.test-infra/jenkins/CommonJobProperties.groovy
+++ b/.test-infra/jenkins/CommonJobProperties.groovy
@@ -69,6 +69,10 @@ class CommonJobProperties {
         extensions {
           wipeOutWorkspace()
           relativeTargetDirectory(checkoutDir)
+          cloneOptions {
+            shallow()
+            noTags()
+          }
           if (!allowRemotePoll) {
             disableRemotePoll()
           }