@@ -41,8 +41,8 @@ pipeline {
41
41
options {
42
42
skipDefaultCheckout() // Specialiced checkout is performed below
43
43
timestamps()
44
- timeout(time : 180 , unit : ' MINUTES' )
45
- buildDiscarder(logRotator(numToKeepStr :' 5 ' ))
44
+ timeout(time : 240 , unit : ' MINUTES' )
45
+ buildDiscarder(logRotator(numToKeepStr :' 10 ' ))
46
46
disableConcurrentBuilds(abortPrevious : true )
47
47
}
48
48
agent {
@@ -77,7 +77,7 @@ pipeline {
77
77
}
78
78
dir (' eclipse.platform.swt.binaries' ) {
79
79
checkout([$class : ' GitSCM' , branches : [[name : ' refs/heads/master' ]],
80
- extensions : [[$class : ' CloneOption' , timeout : 120 , noTags : false ]],
80
+ extensions : [[$class : ' CloneOption' , timeout : 180 , noTags : false ]],
81
81
userRemoteConfigs : [[url : ' https://github.com/eclipse-platform/eclipse.platform.swt.binaries.git' ]]
82
82
])
83
83
sh
' git remote set-url --push origin [email protected] :eclipse-platform/eclipse.platform.swt.binaries.git'
@@ -130,7 +130,7 @@ pipeline {
130
130
}
131
131
stage(' Build SWT-natives' ) {
132
132
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.
134
134
}
135
135
steps {
136
136
script {
0 commit comments