-
Notifications
You must be signed in to change notification settings - Fork 294
[RPM M1] Assemble artifacts based on distribution not file extension #1659
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
Merged
peterzhuamazon
merged 5 commits into
opensearch-project:main
from
peterzhuamazon:opensearch-assemble-distribution-prereq
Feb 28, 2022
Merged
Changes from 3 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
c3e2840
Assemble artifacts based on distribution not file extension
peterzhuamazon e6bced6
Sort the imports correctly in src and tests
peterzhuamazon 86920b3
Tweak comments
peterzhuamazon 612c77a
Add new changes to make private method public
peterzhuamazon b0ac712
More tests
peterzhuamazon File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# 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. | ||
|
||
import logging | ||
|
||
from assemble_workflow.dist import Dist, DistTar, DistZip | ||
|
||
|
||
class Dists: | ||
DISTRIBUTIONS_MAP = { | ||
"tar": DistTar, | ||
"zip": DistZip, | ||
} | ||
|
||
@classmethod | ||
def create_dist(cls, name: str, path: str, min_path: str, distribution: str) -> Dist: | ||
if distribution is None: | ||
logging.info("Distribution not specified, default to tar") | ||
distribution = 'tar' | ||
|
||
return cls.DISTRIBUTIONS_MAP[distribution](name, path, min_path) |
This file contains hidden or 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 hidden or 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
1 change: 1 addition & 0 deletions
1
tests/tests_assemble_workflow/data/artifacts/dist/opensearch-1.3.0/opensearch.txt
This file contains hidden or 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
This page intentionally left blank. | ||
peterzhuamazon marked this conversation as resolved.
Show resolved
Hide resolved
|
Binary file added
BIN
+454 Bytes
...sts_assemble_workflow/data/artifacts/dist/opensearch-dashboards-min-1.3.0-windows-x64.zip
Binary file not shown.
Binary file added
BIN
+223 Bytes
tests/tests_assemble_workflow/data/artifacts/dist/opensearch-min-1.3.0-linux-x64.tar.gz
Binary file not shown.
Binary file added
BIN
+410 Bytes
tests/tests_assemble_workflow/data/artifacts/dist/opensearch-min-1.3.0-windows-x64.zip
Binary file not shown.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.