Re: Restart from stage

2021-03-22 Thread unlimhost
Thanks, Gianluca. Your professional help, as always, is very operational and useful! Thanks to you, I have implemented the ability to run from any Stage, but I would also like to form in "Active Choices Reactive Parameter" plugin automatic list from the names of Stages {}, which I have in PiPlei

Restart from stage

2021-03-22 Thread unlimhost
Are there any examples of the implementation of running a pipeline from a particular stage? I need to set in the pipeline parameters to make it run on a specific node and from a specific stage. If there are no questions with the first one, what are the easiest options to pass from which to run

github issues

2020-12-24 Thread unlimhost
Title: github issues Hello, Jenkins community! Pipelines started to crash when trying to clone from github due to networking issues. Restarting the Pipeline solves the problem. What are the ways to increase the number of attempts or time to clone from github (plugins, configs...) ? Error code:

github: TCP connection reset by peer

2020-12-17 Thread unlimhost
Hello, responsive community! Periodically, when checking out from github, there are such errors. if you have encountered, please share all possible solutions or solutions to accurately identify the culprit of the problem (network, github...): The recommended git tool is: /usr/bin/git using cre

Re: SSL native (self) Jenkins

2020-12-13 Thread unlimhost
Title: Re: SSL native (self) Jenkins Thanks, Gianluca. This group is very helpful in resolving issues with Jenkins. The problem is that the SSL certificate installed and certified by the root CA certificate of my Corporation still does not work with the error specified earlier. Therefore, it is

SSL native (self) Jenkins

2020-12-11 Thread unlimhost
Title: SSL native (self) Jenkins Please help with the working instructions for installing SSL (https) on Jenkins. Is it possible to install an SSL certificate on Jenkins without a reverse proxy (nginx)? I tried these instructions below, but they didn't help (the certificate doesn't work) and I g

Re: different github checkout revisions

2020-12-01 Thread unlimhost
Title: Re: different github checkout revisions Thanks for your reply. Temporarily, I have to roll back to the old, but working successfully solution with git: git(         url: 'https://github.com/enterpr/myrepo.git',         credentialsId: 'github-PAT',         branch: "${params.branch_name}"  

different github checkout revisions

2020-12-01 Thread unlimhost
There is such a jenkins-code: checkout ([ ... extensions: [[$class: 'CheckoutOption', timeout: 180],[$class: 'CloneOption', depth: 1, noTags: true, reference: '', shallow: false, timeout: 60]], ... )] Why do I get different revisions when I restart the same pipeline, without any changes in SCM

different github revisions

2020-11-25 Thread unlimhost
There is such a jenkins-code: checkout ([ ... extensions: [[$class: 'CheckoutOption', timeout: 180],[$class: 'CloneOption', depth: 1, noTags: true, reference: '', shallow: false, timeout: 60]], ... )] Why during the same Pipeline, in different stages where it is used, without any changes in SC

How do I restart the pipeline on the same slave node that it was launched on earlier?

2020-11-19 Thread unlimhost
How do I restart the pipeline on the same slave node that it was launched on earlier? Currently, when executing" Restart from stage", the pipeline can be restarted on any other slave node where there is no data from previous stages of its execution, which makes it impossible to use"Restart from

Please help with a real working example with "checkout"

2020-11-12 Thread unlimhost
Please help with a real working example with "checkout sparse". My code that doesn't work correctly. I expect when running this code that only the "/src/jenkins" folder from my SCM will be cloned locally, but this still clones the entire repository (4GB). I only need the /src/jenkins folder from