Skip to content

Commit

Permalink
Update gradle-check-flaky-test-issue-creation.jenkinsfile. (#4782)
Browse files Browse the repository at this point in the history
Signed-off-by: Prudhvi Godithi <[email protected]>
  • Loading branch information
prudhvigodithi authored Jun 14, 2024
1 parent 6111f87 commit e3a967a
Showing 1 changed file with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* compatible open source license.
*/

lib = library(identifier: '[email protected].0', retriever: modernSCM([
lib = library(identifier: '[email protected].1', retriever: modernSCM([
$class: 'GitSCMSource',
remote: 'https://github.com/opensearch-project/opensearch-build-libraries.git',
]))
Expand All @@ -20,15 +20,17 @@ pipeline {
buildDiscarder(logRotator(daysToKeepStr: '180'))
}
triggers {
parameterizedCron '''
H */8 * * *
'''
parameterizedCron('''
H */6 * * *
''')
}
stages {
stage('Detect Gradle Check Flaky Tests') {
steps {
script {
gradleCheckFlakyTestChecker()
gradleCheckFlakyTestDetector(
issueLabels: 'autocut,>test-failure,flaky-test'
)
}
}
}
Expand Down

0 comments on commit e3a967a

Please sign in to comment.