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

Commit

Permalink
fix: increase scheduled build timeouts to 90 min (#2294) (#2295)
Browse files Browse the repository at this point in the history
* fix: increase scheduled build timeouts to 90 min

* fix: explicitly avoid slack notifications

The built-in step uses "!isPR()" as fallback if the parameter is not set

(cherry picked from commit ad5fc9f)

Co-authored-by: Manuel de la Peña <[email protected]>
  • Loading branch information
mergify[bot] and mdelapenya authored Apr 1, 2022
1 parent 697bebb commit 8afec97
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
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

0 comments on commit 8afec97

Please sign in to comment.