当前位置:网站首页>[issue resolved] - jenkins pipeline checkout timeout
[issue resolved] - jenkins pipeline checkout timeout
2022-08-05 06:20:00 【grandpa is spicy】
Introduction: Jenkins checkout timed out.10 minutes is not long enough

Modify the checkout part as follows and add CheckoutOption
checkout([$class : 'GitSCM',branches : [[name: "${BRANCH}"]],doGenerateSubmoduleConfigurations: false,extensions: [[$class: 'CloneOption', noTags: false, reference: '', shallow: false, timeout: 60000],[$class:'CheckoutOption',timeout:60000]],userRemoteConfigs: [[credentialsId: '81f18226-d36e-4a0e-bd0e-b936843ae77b',url : "http://xxx.git",]]])Reference
https://www.programminghunter.com/article/2040743440/
https://blog.51cto.com/shoufu/5325294
https://www.codeleading.com/article/23974906101/
边栏推荐
- The problem of redirecting to the home page when visiting a new page in dsf5.0
- 带你深入了解Cookie
- spark source code - task submission process - 3-ApplicationMaster
- Getting Started Document 09 Standalone watch
- Hugo搭建个人博客
- flink cdc 目前支持Gauss数据库源吗
- VLAN详解及实验
- What?CDN cache acceleration only works for accelerating static content?
- spark source code - task submission process - 2-YarnClusterApplication
- [Day8] Commands involved in using LVM to expand
猜你喜欢
随机推荐
VLAN详解及实验
Servlet跳转到JSP页面,转发和重定向
This is indeed the best article on microservice architecture I have read!
spark operator-wholeTextFiles operator
wc、grep、tar、vi/vim
The Servlet to jump to the JSP page, forwarding and redirection
正则表达式小示例--获取重复最多的字符及其数量
sql server 重复值在后面计数
产品学习资料
路由器和静态路由的配置
5分钟完成mysql离线安装
The highlight moment of operation and maintenance starts with intelligence
What impact does CIPU have on the cloud computing industry?
What's the point of monitoring the involution of the system?
有哪些事情是你做了运维才知道的?
spark source code - task submission process - 5-CoarseGrainedExecutorBackend
VRRP原理及命令
[Day1] (Super detailed steps) Build a soft RAID disk array
正则表达式小实例--去掉字符串中间和两边的空格
selenium模块的操作之拉钩








