Skip to content
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

Added openssl-env for automated tagging #173

Merged
merged 2 commits into from
May 24, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion git_tools/create_opence_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,11 @@ def _main(arg_strings=None): # pylint: disable=too-many-locals, too-many-stateme
release_name = f"v{version}"

tf_serving_env = os.path.abspath(os.path.join(primary_repo_path, "envs", "tensorflow-serving-env.yaml"))
openssl_env = os.path.abspath(os.path.join(primary_repo_path, "envs", "openssl-env.yaml"))
variants = utils.ALL_VARIANTS()
env_file_contents = []
for variant in variants:
env_file_contents += env_config.load_env_config_files([open_ce_env_file, tf_serving_env],
env_file_contents += env_config.load_env_config_files([open_ce_env_file, tf_serving_env, openssl_env],
[variant], ignore_urls=True)
for env_file_content in env_file_contents:
env_file_tag = env_file_content.get(env_config.Key.git_tag_for_env.name, None)
Expand Down