Skip to content

Commit

Permalink
pass version
Browse files Browse the repository at this point in the history
Signed-off-by: Tianle Huang <tianleh@amazon.com>
  • Loading branch information
tianleh committed Dec 18, 2021
1 parent e36b524 commit 99fee2d
Showing 1 changed file with 16 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,23 @@ pipeline {
}
steps {
script {
basePathOpenSearch = getPublicUrl(name:'Open Search', jobName:'distribution-build-opensearch', architecture:architecture, platform:platform, buildNumber:opensearch_build_id)
basePathOpenSearch = getPublicUrl(
name:'Open Search',
jobName:'distribution-build-opensearch',
architecture:architecture,
platform:platform,
buildNumber:opensearch_build_id,
version: opensearch_version
)

basePathOpenSearchDashboards = getPublicUrl(name:'Open Search Dashboards', jobName:'distribution-build-opensearch-dashboards', architecture:architecture, platform:platform, buildNumber:opensearch_dashboards_build_id)
basePathOpenSearchDashboards = getPublicUrl(
name:'Open Search Dashboards',
jobName:'distribution-build-opensearch-dashboards',
architecture:architecture,
platform:platform,
buildNumber:opensearch_dashboards_build_id,
version: opensearch_dashboards_version
)

sh "./test.sh integ-test manifests/${opensearch_dashboards_version}/opensearch-dashboards-${opensearch_dashboards_version}-test.yml -p opensearch=${basePathOpenSearch} opensearch-dashboards=${basePathOpenSearchDashboards} --test-run-id ${env.BUILD_NUMBER}"
}
Expand Down

0 comments on commit 99fee2d

Please sign in to comment.