Skip to content

Commit

Permalink
[lldb] Increase checkout timeout to 30 minutes
Browse files Browse the repository at this point in the history
  • Loading branch information
augusto2112 committed Jul 22, 2022
1 parent 179eb4b commit 81b8148
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions zorg/jenkins/jobs/jobs/lldb-cmake
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ pipeline {
steps {
timeout(30) {
dir('llvm-project') {
checkout([$class: 'GitSCM', branches: [[name: params.GIT_SHA]], userRemoteConfigs: [[url: 'http://labmaster3.local/git/llvm-project.git']]])
checkout([$class: 'GitSCM', branches: [[name: params.GIT_SHA]], userRemoteConfigs: [[url: 'http://labmaster3.local/git/llvm-project.git']], extensions: [[$class: 'CloneOption', noTags: true, timeout: 30]]])
}
dir('llvm-zorg') {
checkout([$class: 'GitSCM', branches: [[name: '*/main']], userRemoteConfigs: [[url: 'http://labmaster3.local/git/llvm-zorg.git']]])
checkout([$class: 'GitSCM', branches: [[name: '*/main']], userRemoteConfigs: [[url: 'http://labmaster3.local/git/llvm-zorg.git']], extensions: [[$class: 'CloneOption', noTags: true, timeout: 30]]])
}
}
}
Expand Down

0 comments on commit 81b8148

Please sign in to comment.