Skip to content

Commit faa863e

Browse files
authored
Update Jenkinsfile to increase timeouts
See eclipse-platform/eclipse.platform.releng.aggregator#1608
1 parent 9e25e9e commit faa863e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Jenkinsfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ pipeline {
4141
options {
4242
skipDefaultCheckout() // Specialiced checkout is performed below
4343
timestamps()
44-
timeout(time: 180, unit: 'MINUTES')
45-
buildDiscarder(logRotator(numToKeepStr:'5'))
44+
timeout(time: 240, unit: 'MINUTES')
45+
buildDiscarder(logRotator(numToKeepStr:'10'))
4646
disableConcurrentBuilds(abortPrevious: true)
4747
}
4848
agent {
@@ -77,7 +77,7 @@ pipeline {
7777
}
7878
dir ('eclipse.platform.swt.binaries') {
7979
checkout([$class: 'GitSCM', branches: [[name: 'refs/heads/master']],
80-
extensions: [[$class: 'CloneOption', timeout: 120, noTags: false ]],
80+
extensions: [[$class: 'CloneOption', timeout: 180, noTags: false ]],
8181
userRemoteConfigs: [[url: 'https://github.com/eclipse-platform/eclipse.platform.swt.binaries.git']]
8282
])
8383
sh 'git remote set-url --push origin [email protected]:eclipse-platform/eclipse.platform.swt.binaries.git'
@@ -130,7 +130,7 @@ pipeline {
130130
}
131131
stage('Build SWT-natives') {
132132
options {
133-
timeout(time: 120, unit: 'MINUTES') // Some build agents are rare and it might take awhile until they are available.
133+
timeout(time: 240, unit: 'MINUTES') // Some build agents are rare and it might take awhile until they are available.
134134
}
135135
steps {
136136
script {

0 commit comments

Comments
 (0)