Skip to content

Commit

Permalink
Rename to gradleCheckFlakyTestDetector
Browse files Browse the repository at this point in the history
Signed-off-by: Prudhvi Godithi <[email protected]>
  • Loading branch information
prudhvigodithi committed Jun 14, 2024
1 parent cee30d4 commit ba6c358
Showing 1 changed file with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
* compatible open source license.
*/

lib = library(identifier: 'jenkins@6.5.0', retriever: modernSCM([
lib = library(identifier: 'jenkins@main', retriever: modernSCM([
$class: 'GitSCMSource',
remote: 'https://github.com/opensearch-project/opensearch-build-libraries.git',
remote: 'https://github.com/prudhvigodithi/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 ba6c358

Please sign in to comment.