File tree Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -89,15 +89,24 @@ jobs:
89
89
PYTHON_EXECUTABLE=python ${CONDA_RUN} --no-capture-output \
90
90
backends/apple/mps/install_requirements.sh
91
91
92
- # Build iOS Frameworks
92
+ # Build Release iOS Frameworks
93
93
PYTHON_EXECUTABLE=python ${CONDA_RUN} --no-capture-output \
94
- build/build_apple_frameworks.sh --coreml --mps --optimized --portable --quantized --xnnpack
94
+ build/build_apple_frameworks.sh --Release -- coreml --mps --optimized --portable --quantized --xnnpack
95
95
96
- # Bundle iOS Frameworks
96
+ # Bundle Release iOS Frameworks
97
97
for FRAMEWORK in "${FRAMEWORKS[@]}"; do (
98
98
cd cmake-out && zip -r "${RUNNER_TEMP}/artifacts/${FRAMEWORK}-${VERSION}.zip" "${FRAMEWORK}.xcframework"
99
99
) done
100
100
101
+ # Build Debug iOS Frameworks
102
+ PYTHON_EXECUTABLE=python ${CONDA_RUN} --no-capture-output \
103
+ build/build_apple_frameworks.sh --Debug --coreml --mps --optimized --portable --quantized --xnnpack
104
+
105
+ # Bundle Debug iOS Frameworks
106
+ for FRAMEWORK in "${FRAMEWORKS[@]}"; do (
107
+ cd cmake-out && zip -r "${RUNNER_TEMP}/artifacts/${FRAMEWORK}_debug-${VERSION}.zip" "${FRAMEWORK}_debug.xcframework"
108
+ ) done
109
+
101
110
popd
102
111
103
112
upload-frameworks-ios :
You can’t perform that action at this time.
0 commit comments