forked from opensearch-project/opensearch-build
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Prudhvi Godithi <[email protected]>
- Loading branch information
1 parent
94a08ed
commit c324ab6
Showing
10 changed files
with
159 additions
and
122 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
* compatible open source license. | ||
*/ | ||
|
||
lib = library(identifier: '[email protected].1', retriever: modernSCM([ | ||
lib = library(identifier: '[email protected].2', retriever: modernSCM([ | ||
$class: 'GitSCMSource', | ||
remote: 'https://github.com/opensearch-project/opensearch-build-libraries.git', | ||
])) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
* compatible open source license. | ||
*/ | ||
|
||
lib = library(identifier: '[email protected].1', retriever: modernSCM([ | ||
lib = library(identifier: '[email protected].2', retriever: modernSCM([ | ||
$class: 'GitSCMSource', | ||
remote: 'https://github.com/opensearch-project/opensearch-build-libraries.git', | ||
])) | ||
|
@@ -343,6 +343,7 @@ pipeline { | |
docker.withRegistry('https://public.ecr.aws/') { | ||
docker.image(docker_images["$distribution"]).inside(docker_args["$distribution"]) { | ||
checkout scm | ||
sh 'sleep 10' | ||
downloadBuildManifest( | ||
url: BUILD_MANIFEST_URL, | ||
path: BUILD_MANIFEST | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
* compatible open source license. | ||
*/ | ||
|
||
lib = library(identifier: '[email protected].1', retriever: modernSCM([ | ||
lib = library(identifier: '[email protected].2', retriever: modernSCM([ | ||
$class: 'GitSCMSource', | ||
remote: 'https://github.com/opensearch-project/opensearch-build-libraries.git', | ||
])) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
* compatible open source license. | ||
*/ | ||
|
||
lib = library(identifier: '[email protected].1', retriever: modernSCM([ | ||
lib = library(identifier: '[email protected].2', retriever: modernSCM([ | ||
$class: 'GitSCMSource', | ||
remote: 'https://github.com/opensearch-project/opensearch-build-libraries.git', | ||
])) | ||
|
@@ -297,12 +297,11 @@ pipeline { | |
docker.withRegistry('https://public.ecr.aws/') { | ||
docker.image(docker_images["$distribution"]).inside(docker_args["$distribution"]) { | ||
checkout scm | ||
|
||
sh 'sleep 10' | ||
downloadBuildManifest( | ||
url: BUILD_MANIFEST_URL, | ||
path: BUILD_MANIFEST | ||
) | ||
|
||
createUploadTestReportManifest( | ||
testManifest: "manifests/${TEST_MANIFEST}", | ||
buildManifest: BUILD_MANIFEST, | ||
|
@@ -311,14 +310,14 @@ pipeline { | |
componentName: "${COMPONENT_NAME}", | ||
) | ||
echo("Download report manifest from https://ci.opensearch.org/ci/dbc/integ-test/${env.version}/${env.buildId}/${env.platform}/${env.architecture}/${env.distribution}/test-results/${env.BUILD_NUMBER}/integ-test/test-report.yml") | ||
stash includes: 'test-report.yml', name: "test-report-$BUILD_NUMBER" | ||
archiveArtifacts artifacts: 'test-report.yml' | ||
} | ||
} | ||
} | ||
node(agent_nodes['linux_x64']) { | ||
unstash "test-report-$BUILD_NUMBER" | ||
def rc = (params.RC_NUMBER.toInteger() > 0) | ||
sh "mkdir -p test-results-os-${env.BUILD_NUMBER}" | ||
sh "curl -sSL https://ci.opensearch.org/ci/dbc/integ-test/${env.version}/${env.buildId}/${env.platform}/${env.architecture}/${env.distribution}/test-results/${env.BUILD_NUMBER}/integ-test/test-report.yml --output test-results-os-${env.BUILD_NUMBER}/test-report.yml" | ||
publishIntegTestResults( | ||
version: env.version, | ||
distributionBuildNumber: env.buildId, | ||
|
@@ -329,7 +328,7 @@ pipeline { | |
platform: env.platform, | ||
architecture: env.architecture, | ||
distribution: env.distribution, | ||
testReportManifestYml: "test-report.yml" | ||
testReportManifestYml: "test-results-os-${env.BUILD_NUMBER}/test-report.yml" | ||
) | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.