def __init__(self, artifacts_path: str, content_version: str, suffix: str, zip: bool, packs: bool, cpus: int): """ Content artifacts configuration Args: artifacts_path: existing destination directory for creating artifacts. content_version: release content varsion. packs: create only content_packs artifacts if True. suffix: suffix to add all file we creates. zip: True for zip all content artifacts to 3 diffrent zip files in same structure else False. cpus: Availble cpus in the computer. """ self.suffix = suffix self.content_version = content_version self.zip_artifacts = zip self.only_content_packs = packs self.artifacts_path = Path(artifacts_path) self.content_new_path = self.artifacts_path / 'content_new' self.content_test_path = self.artifacts_path / 'content_test' self.content_packs_path = self.artifacts_path / 'content_packs' self.content_all_path = self.artifacts_path / 'all_content' self.cpus = cpus self.execution_start = time.time() self.content = Content.from_cwd() self.exit_code = EX_SUCCESS
def __init__(self, artifacts_path: str, zip: bool, packs: bool, content_version: str, suffix: str, cpus: int, id_set_path: str = '', pack_names: str = 'all', signature_key: str = '', sign_directory: Path = None, remove_test_playbooks: bool = True): """ Content artifacts configuration Args: artifacts_path: existing destination directory for creating artifacts. zip: True for zip all content artifacts to 3 different zip files in same structure else False. packs: create only content_packs artifacts if True. content_version: release content version. suffix: suffix to add all file we creates. cpus: available cpus in the computer. id_set_path: the full path of id_set.json. pack_names: Packs to create artifacts for. signature_key: Base64 encoded signature key used for signing packs. sign_directory: Path to the signDirectory executable file. remove_test_playbooks: Should remove test playbooks from content packs or not. """ # options arguments self.artifacts_path = Path(artifacts_path) self.zip_artifacts = zip self.only_content_packs = packs self.content_version = content_version self.suffix = suffix self.cpus = cpus self.id_set_path = id_set_path self.pack_names = arg_to_list(pack_names) self.signature_key = signature_key self.signDirectory = sign_directory self.remove_test_playbooks = remove_test_playbooks # run related arguments self.content_new_path = self.artifacts_path / 'content_new' self.content_test_path = self.artifacts_path / 'content_test' self.content_packs_path = self.artifacts_path / 'content_packs' self.content_all_path = self.artifacts_path / 'all_content' self.content_uploadable_zips_path = self.artifacts_path / 'uploadable_packs' # inits self.content = Content.from_cwd() self.execution_start = time.time() self.exit_code = EX_SUCCESS