mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-16 21:00:14 +00:00
### Description <!-- Describe your changes. --> As title. 1. Add macos build as an optionally enabled arch for pod and changes to exsiting build_ios_framework/assemble_c_pod scripts. 2. Enable macos build arch in ios packaging pipeline (currently for variants other than Mobile) and check the output artifacts are correct. 3. Write MacOS Test Target scheme in the test app and integrate into ios packaging CI testing pipeline. Currently the changes only apply to onnxruntime-c pod. as the original request was from ORT SPM which consumes the onnxruntime-c pod only as the binary target. TODO: could look into adding macos platform to objc pod as well. ### Motivation and Context <!-- - Why is this change required? What problem does it solve? - If it fixes an open issue, please link to the issue here. --> Enable macos platform support in cocoapods. and also potentially produce binary target for enabling macos platform in SPM as well. Replace https://github.com/microsoft/onnxruntime/pull/18334 --------- Co-authored-by: rachguo <rachguo@rachguos-Mac-mini.local> Co-authored-by: rachguo <rachguo@rachguos-Mini.attlocal.net> Co-authored-by: Edward Chen <18449977+edgchen1@users.noreply.github.com>
32 lines
1.1 KiB
Bash
Executable file
32 lines
1.1 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
# Note: This script is intended to be called from the iOS packaging build or a similar context
|
|
# See tools/ci_build/github/azure-pipelines/mac-ios-packaging-pipeline.yml
|
|
|
|
set -e
|
|
set -x
|
|
|
|
USAGE_TEXT="Usage: ${0} <binaries staging directory> <artifacts staging directory> <ORT pod name> <ORT pod version>"
|
|
|
|
abspath() {
|
|
local INPUT_PATH=${1:?"Expected path as the first argument."}
|
|
echo "$(cd "$(dirname "${INPUT_PATH}")" && pwd)/$(basename "${INPUT_PATH}")"
|
|
}
|
|
|
|
# staging directory for binaries (source)
|
|
BINARIES_STAGING_DIR=$(abspath "${1:?${USAGE_TEXT}}")
|
|
# staging directory for build artifacts (destination)
|
|
ARTIFACTS_STAGING_DIR=$(abspath "${2:?${USAGE_TEXT}}")
|
|
POD_NAME=${3:?${USAGE_TEXT}}
|
|
ORT_POD_VERSION=${4:?${USAGE_TEXT}}
|
|
|
|
POD_ARCHIVE_BASENAME="pod-archive-${POD_NAME}-${ORT_POD_VERSION}.zip"
|
|
PODSPEC_BASENAME="${POD_NAME}.podspec"
|
|
|
|
pushd "${BINARIES_STAGING_DIR}/${POD_NAME}"
|
|
|
|
# assemble the files in the artifacts staging directory
|
|
zip -r "${ARTIFACTS_STAGING_DIR}/${POD_ARCHIVE_BASENAME}" ./* --exclude "${PODSPEC_BASENAME}"
|
|
cp "${PODSPEC_BASENAME}" "${ARTIFACTS_STAGING_DIR}/${PODSPEC_BASENAME}"
|
|
|
|
popd
|