-
Notifications
You must be signed in to change notification settings - Fork 282
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
Support -p platform in build scripts. #748
Conversation
Signed-off-by: dblock <[email protected]>
Codecov Report
@@ Coverage Diff @@
## main #748 +/- ##
==========================================
+ Coverage 91.16% 91.17% +0.01%
==========================================
Files 75 75
Lines 1980 1984 +4
==========================================
+ Hits 1805 1809 +4
Misses 175 175
Continue to review full report at Codecov.
|
arch=None, | ||
name=None, | ||
snapshot=True, | ||
build_id=None, | ||
output_dir="artifacts", | ||
): | ||
self.build_id = os.getenv("OPENSEARCH_BUILD_ID") or os.getenv("OPENSEARCH_DASHBOARDS_BUILD_ID") or build_id or uuid.uuid4().hex | ||
self.build_id = os.getenv("BUILD_NUMBER") or build_id or uuid.uuid4().hex |
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.
Side effect of #730 that we forgot to fix.
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.
Yea, looks like those bundle numbers became 8c363d37f71349b1add343c0c48945a7
Signed-off-by: dblock <[email protected]>
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.
LGTM!
Signed-off-by: dblock [email protected]
Description
Support for #740, adds
-p platform
to build scripts so we can passlinux
ordarwin
around and default it touname -s
. This required re-overwriting common-utils, job-scheduler and alerting scripts.ScriptFinder is incorrectly picking the override from the repo with source code. The build repo should be the one always picked first because that's where we'd make a last minute fix, updated.
Auto-resolving JAVA_HOME on MacOS.
Check List
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.