Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: Sayali Gaikawad <[email protected]>
  • Loading branch information
gaiksaya committed Oct 7, 2024
1 parent 3d6aa3d commit e711a9f
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions jenkins/test-build.jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
/**
* Copyright OpenSearch Contributors
* SPDX-License-Identifier: Apache-2.0

The OpenSearch Contributors require contributions made to
this file be licensed under the Apache-2.0 license or a
compatible open source license.
*/

lib = library(identifier: 'jenkins@testNotificationTest', retriever: modernSCM([
$class: 'GitSCMSource',
remote: 'https://github.com/gaiksaya/opensearch-build-libraries.git',
]))

pipeline {
agent {
label 'Jenkins-Agent-Ubuntu2004-X64-M58xlarge-Single-Host'
}

stages {
stage('Test integTest') {
steps {
updateBuildFailureIssues(
inputManifestPath: 'manifests/2.18.0/opensearch-2.18.0.yml',
distributionBuildNumber: '10364'
)
}
}
}
}

0 comments on commit e711a9f

Please sign in to comment.