-
Notifications
You must be signed in to change notification settings - Fork 277
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/main' into small-fix-ci
- Loading branch information
Showing
20 changed files
with
2,819 additions
and
32 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
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
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
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 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
1 change: 1 addition & 0 deletions
1
tests/tests_assemble_workflow/data/artifacts/dist/opensearch-1.3.0/opensearch.txt
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
This page intentionally left blank. |
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.