I need to clone a plugin git public repository(that is not mine), zip it, and upload it to my server.
node {
stage('clone') { // for display purposes
// Get some code from a GitHub repository
git branch: 'master',
url: 'https://github.com/LimeSurvey/LimeSurvey.git'
}
}
Thats my code, but the repository is heavy and gives me a 10min timeout error. I dont know if its a way to change the timeout time on the script.
Thanks.