-
Notifications
You must be signed in to change notification settings - Fork 278
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor distribution-build.jenkinsfile for opensearch-dashboards #4371
Conversation
Signed-off-by: Jeff Lu <chunglu@amazon.com>
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #4371 +/- ##
=======================================
Coverage 91.35% 91.35%
=======================================
Files 190 190
Lines 6179 6179
=======================================
Hits 5645 5645
Misses 534 534 ☔ View full report in Codecov by Sentry. |
@@ -1104,3 +1054,36 @@ def markStageUnstableIfPluginsFailedToBuild() { | |||
unstable('Some plugins failed to build. See the ./build.sh step for logs and more details') | |||
} | |||
} | |||
|
|||
def triggerIntegrationTests(String buildManifestUrl, String buildManifestUrlOpenSearch) { | |||
Boolean skipIntegTests = (INTEG_TEST_JOB_NAME == '' || TEST_MANIFEST == '' || buildManifestUrl == '') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add a null check for buildManifestUrlOpenSearch
as well.
Thanks!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for noticing that,, adding it now.
Signed-off-by: Jeff Lu <chunglu@amazon.com>
Description
Refactoring distribution-build.jenkinsfile for opensearch-dashboards by reducing repetitive code
Issues Resolved
N/A
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.