You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by bn...@apache.org on 2021/07/23 20:47:00 UTC

[trafficserver-ci] branch main updated: pipelines: set checkout timeout back to 10

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

bnolsen pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/trafficserver-ci.git


The following commit(s) were added to refs/heads/main by this push:
     new 958ea9d  pipelines: set checkout timeout back to 10
     new 4f3befa  Merge pull request #30 from traeak/checkout_timeout
958ea9d is described below

commit 958ea9ddcb2d099fed558592d6aae11fc0cf7a3c
Author: Brian Olsen <bn...@gmail.com>
AuthorDate: Fri Jul 23 13:44:54 2021 -0700

    pipelines: set checkout timeout back to 10
---
 jenkins/branch/autest.pipeline         |  8 ++++----
 jenkins/branch/clang_analyzer.pipeline |  8 ++++----
 jenkins/branch/clang_format.pipeline   |  8 ++++----
 jenkins/branch/coverage.pipeline       | 12 ++++++------
 jenkins/branch/in_tree.pipeline        |  8 ++++----
 jenkins/branch/os_build.pipeline       |  6 ++++--
 jenkins/branch/out_of_tree.pipeline    |  8 ++++----
 jenkins/branch/rat.pipeline            |  8 ++++----
 8 files changed, 34 insertions(+), 32 deletions(-)

diff --git a/jenkins/branch/autest.pipeline b/jenkins/branch/autest.pipeline
index b76331d..171b410 100644
--- a/jenkins/branch/autest.pipeline
+++ b/jenkins/branch/autest.pipeline
@@ -40,16 +40,16 @@ pipeline {
 							checkout([$class: 'GitSCM',
 								branches: [[name: branch]],
 								userRemoteConfigs: [[url: env.GITHUB_URL]],
-								extensions: [[$class: 'CloneOption', timeout: 5]]]
-							)
+								extensions: [[$class: 'CloneOption', timeout: 10]]
+							])
 						} catch (error) {
 							echo "Clone failed, retry"
 							retry(2) {
 								checkout([$class: 'GitSCM',
 									branches: [[name: branch]],
 									userRemoteConfigs: [[url: env.GITHUB_URL]],
-									extensions: [[$class: 'CloneOption', timeout: 5]]]
-								)
+									extensions: [[$class: 'CloneOption', timeout: 10]]
+								])
 							}
 						}
 					}
diff --git a/jenkins/branch/clang_analyzer.pipeline b/jenkins/branch/clang_analyzer.pipeline
index 5a19a10..52eac0b 100644
--- a/jenkins/branch/clang_analyzer.pipeline
+++ b/jenkins/branch/clang_analyzer.pipeline
@@ -45,16 +45,16 @@ pipeline {
 							checkout([$class: 'GitSCM',
 								branches: [[name: branch]],
 								userRemoteConfigs: [[url: env.GITHUB_URL]],
-								extensions: [[$class: 'CloneOption', timeout: 5]]]
-							)
+								extensions: [[$class: 'CloneOption', timeout: 10]]
+							])
 						} catch (error) {
 							echo "Clone failed, retry"
 							retry(2) {
 								checkout([$class: 'GitSCM',
 									branches: [[name: branch]],
 									userRemoteConfigs: [[url: env.GITHUB_URL]],
-									extensions: [[$class: 'CloneOption', timeout: 5]]]
-								)
+									extensions: [[$class: 'CloneOption', timeout: 10]]
+								])
 							}
 						}
 					}
diff --git a/jenkins/branch/clang_format.pipeline b/jenkins/branch/clang_format.pipeline
index ee03c94..0f499aa 100644
--- a/jenkins/branch/clang_format.pipeline
+++ b/jenkins/branch/clang_format.pipeline
@@ -44,16 +44,16 @@ pipeline {
 							checkout([$class: 'GitSCM',
 								branches: [[name: branch]],
 								userRemoteConfigs: [[url: env.GITHUB_URL]],
-								extensions: [[$class: 'CloneOption', timeout: 5]]]
-							)
+								extensions: [[$class: 'CloneOption', timeout: 10]]
+							])
 						} catch (error) {
 							echo "Clone failed, retry"
 							retry(2) {
 								checkout([$class: 'GitSCM',
 									branches: [[name: branch]],
 									userRemoteConfigs: [[url: env.GITHUB_URL]],
-									extensions: [[$class: 'CloneOption', timeout: 5]]]
-								)
+									extensions: [[$class: 'CloneOption', timeout: 10]]
+								])
 							}
 						}
 					}
diff --git a/jenkins/branch/coverage.pipeline b/jenkins/branch/coverage.pipeline
index f4e6b8f..5e17495 100644
--- a/jenkins/branch/coverage.pipeline
+++ b/jenkins/branch/coverage.pipeline
@@ -37,18 +37,18 @@ pipeline {
 						}
 						try {
 							checkout([$class: 'GitSCM',
-							branches: [[name: branch]],
-							userRemoteConfigs: [[url: env.GITHUB_URL]],
-							extensions: [[$class: 'CloneOption', timeout: 5]]]
-							)
+								branches: [[name: branch]],
+								userRemoteConfigs: [[url: env.GITHUB_URL]],
+								extensions: [[$class: 'CloneOption', timeout: 10]]
+							])
 						} catch (error) {
 							echo "Clone failed, retry"
 							retry(2) {
 								checkout([$class: 'GitSCM',
 									branches: [[name: branch]],
 									userRemoteConfigs: [[url: env.GITHUB_URL]],
-									extensions: [[$class: 'CloneOption', timeout: 5]]]
-								)
+									extensions: [[$class: 'CloneOption', timeout: 10]]
+								])
 							}
 						}
 					}
diff --git a/jenkins/branch/in_tree.pipeline b/jenkins/branch/in_tree.pipeline
index 3483492..17b56ce 100644
--- a/jenkins/branch/in_tree.pipeline
+++ b/jenkins/branch/in_tree.pipeline
@@ -48,16 +48,16 @@ pipeline {
 							checkout([$class: 'GitSCM',
 								branches: [[name: branch]],
 								userRemoteConfigs: [[url: env.GITHUB_URL]],
-								extensions: [[$class: 'CloneOption', timeout: 5]]]
-							)
+								extensions: [[$class: 'CloneOption', timeout: 10]]
+							])
 						} catch (error) {
 							echo "Clone failed, retry"
 							retry(2) {
 								checkout([$class: 'GitSCM',
 									branches: [[name: branch]],
 									userRemoteConfigs: [[url: env.GITHUB_URL]],
-									extensions: [[$class: 'CloneOption', timeout: 5]]]
-								)
+									extensions: [[$class: 'CloneOption', timeout: 10]]
+								])
 							}
 						}
 					}
diff --git a/jenkins/branch/os_build.pipeline b/jenkins/branch/os_build.pipeline
index f9622fb..93d444b 100644
--- a/jenkins/branch/os_build.pipeline
+++ b/jenkins/branch/os_build.pipeline
@@ -41,14 +41,16 @@ pipeline {
 							checkout([$class: 'GitSCM',
 								branches: [[name: branch]],
 								userRemoteConfigs: [[url: env.GITHUB_URL]],
-								extensions: [[$class: 'CloneOption', timeout: 5]]])
+								extensions: [[$class: 'CloneOption', timeout: 10]]
+							])
 						} catch (error) {
 							echo "Clone failed, retry"
 							retry(2) {
 								checkout([$class: 'GitSCM',
 									branches: [[name: branch]],
 									userRemoteConfigs: [[url: env.GITHUB_URL]],
-									extensions: [[$class: 'CloneOption', timeout: 5]]])
+									extensions: [[$class: 'CloneOption', timeout: 10]]
+								])
 							}
 						}
 					}
diff --git a/jenkins/branch/out_of_tree.pipeline b/jenkins/branch/out_of_tree.pipeline
index 7540cf0..cd598af 100644
--- a/jenkins/branch/out_of_tree.pipeline
+++ b/jenkins/branch/out_of_tree.pipeline
@@ -47,16 +47,16 @@ pipeline {
 							checkout([$class: 'GitSCM',
 								branches: [[name: branch]],
 								userRemoteConfigs: [[url: env.GITHUB_URL]],
-								extensions: [[$class: 'CloneOption', timeout: 5]]]
-							)
+								extensions: [[$class: 'CloneOption', timeout: 10]]
+							])
 						} catch (error) {
 							echo "Clone failed, retry"
 							retry(2) {
 								checkout([$class: 'GitSCM',
 									branches: [[name: branch]],
 									userRemoteConfigs: [[url: env.GITHUB_URL]],
-									extensions: [[$class: 'CloneOption', timeout: 5]]]
-								)
+									extensions: [[$class: 'CloneOption', timeout: 10]]
+								])
 							}
 						}
 					}
diff --git a/jenkins/branch/rat.pipeline b/jenkins/branch/rat.pipeline
index 4bc46b8..0f6aad9 100644
--- a/jenkins/branch/rat.pipeline
+++ b/jenkins/branch/rat.pipeline
@@ -45,16 +45,16 @@ pipeline {
 							checkout([$class: 'GitSCM',
 								branches: [[name: branch]],
 								userRemoteConfigs: [[url: env.GITHUB_URL]],
-								extensions: [[$class: 'CloneOption', timeout: 5]]]
-							)
+								extensions: [[$class: 'CloneOption', timeout: 10]]
+							])
 						} catch (error) {
 							echo "Clone failed, retry"
 							retry(2) {
 								checkout([$class: 'GitSCM',
 									branches: [[name: branch]],
 									userRemoteConfigs: [[url: env.GITHUB_URL]],
-									extensions: [[$class: 'CloneOption', timeout: 5]]]
-								)
+									extensions: [[$class: 'CloneOption', timeout: 10]]
+								])
 							}
 						}
 					}