Update Jenkins build time limits

This commit is contained in:
iFargle
2023-03-16 08:25:21 +09:00
parent a94a4ccfe5
commit 5a1bcdcd3c

4
Jenkinsfile vendored
View File

@@ -50,7 +50,7 @@ pipeline {
}
}
stage('Build Private') {
options { timeout(time: 30, unit: 'MINUTES') }
options { timeout(time: 2, unit: 'HOURS') }
steps {
script {
if (env.BRANCH_NAME == 'main') {
@@ -85,7 +85,7 @@ pipeline {
}
}
stage('Build Public') {
options { timeout(time: 30, unit: 'MINUTES') }
options { timeout(time: 2, unit: 'HOURS') }
steps {
script {
if (env.BRANCH_NAME == 'main') {