-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Remove training packages from onnxruntime-ios-packaging-pipeline #25451
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
base: main
Are you sure you want to change the base?
Conversation
…t and streamline configuration for Full variant
It's failing:
|
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.
You can commit the suggested changes from lintrunner.
tools/ci_build/github/apple/objectivec/assemble_objc_pod_package.py
Outdated
Show resolved
Hide resolved
tools/ci_build/github/apple/objectivec/assemble_objc_pod_package.py
Outdated
Show resolved
Hide resolved
tools/ci_build/github/azure-pipelines/templates/stages/mac-ios-packaging-build-stage.yml
Outdated
Show resolved
Hide resolved
…-packaging-build-stage.yml Co-authored-by: Edward Chen <[email protected]>
|
||
|
||
def get_pod_config_file(package_variant: PackageVariant): | ||
def get_pod_config_file(): | ||
""" | ||
Gets the pod configuration file path for the given package variant. |
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.
Gets the pod configuration file path for the given package variant. | |
Gets the pod configuration file path. |
copy_repo_relative_to_dir, | ||
gen_file_from_template, | ||
get_podspec_values, | ||
load_json_config, | ||
) | ||
|
||
|
||
def get_pod_config_file(package_variant: PackageVariant): | ||
def get_pod_config_file(): | ||
""" | ||
Gets the pod configuration file path for the given package variant. |
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.
Gets the pod configuration file path for the given package variant. | |
Gets the pod configuration file path. |
@@ -84,35 +83,25 @@ | |||
} | |||
|
|||
|
|||
def get_pod_files(package_variant: PackageVariant): | |||
def get_pod_files(): | |||
""" | |||
Gets the source and header files for the given package variant. |
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.
Gets the source and header files for the given package variant. | |
Gets the source and header files. |
Hope we can get it included in this upcoming release. |
Description
remove support for multiple package variants (
Full
andTraining
) in the Apple packaging pipeline, consolidating the codebase to only support theFull
variant. The changes simplify the code by eliminating thePackageVariant
enum, related logic, and configuration files for theTraining
variant.