Skip to content
This repository has been archived by the owner on Sep 17, 2024. It is now read-only.

[8.0](backport #2294) fix: increase scheduled build timeouts to 90 min #2296

Merged
merged 1 commit into from
Apr 1, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .ci/e2eTestingFleetDaily.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ pipeline {
PIPELINE_LOG_LEVEL='INFO'
}
options {
timeout(time: 1, unit: 'HOURS')
timeout(time: 90, unit: 'MINUTES')
buildDiscarder(logRotator(numToKeepStr: '20', artifactNumToKeepStr: '20'))
timestamps()
ansiColor('xterm')
Expand All @@ -39,6 +39,7 @@ pipeline {
steps {
runE2E(jobName: "${env.JOB_BASE_NAME}",
nightlyScenarios: true,
notifyOnGreenBuilds: 'false',
runTestsSuites: 'fleet',
slackChannel: 'elastic-agent',
propagate: true,
Expand Down
2 changes: 1 addition & 1 deletion .ci/e2eTestingHelmDaily.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ pipeline {
PIPELINE_LOG_LEVEL='INFO'
}
options {
timeout(time: 1, unit: 'HOURS')
timeout(time: 90, unit: 'MINUTES')
buildDiscarder(logRotator(numToKeepStr: '20', artifactNumToKeepStr: '20'))
timestamps()
ansiColor('xterm')
Expand Down
2 changes: 1 addition & 1 deletion .ci/e2eTestingK8SAutodiscoveryDaily.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ pipeline {
PIPELINE_LOG_LEVEL='INFO'
}
options {
timeout(time: 1, unit: 'HOURS')
timeout(time: 90, unit: 'MINUTES')
buildDiscarder(logRotator(numToKeepStr: '20', artifactNumToKeepStr: '20'))
timestamps()
ansiColor('xterm')
Expand Down