Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Add log
  • Loading branch information
qinhui committed Apr 24, 2025
commit e0c67aa8fcea0f4d530e3b2d9602286cc4dfa176
14 changes: 12 additions & 2 deletions .github/ci/build/build_ios.sh
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,18 @@ if [ $compress_apiexample = true ]; then
global_des_path=$WORKSPACE/${apiexample_global_name}_${sdk_version}_APIExample.zip
echo "cn_des_path: $cn_des_path"
echo "global_des_path: $global_des_path"
mv cn_result.zip $cn_des_path
mv global_result.zip $global_des_path
echo "Moving cn_result.zip to $cn_des_path..."
mv cn_result.zip $cn_des_path 2>&1
if [ $? -ne 0 ]; then
echo "Failed to move cn_result.zip to $cn_des_path. Error: $(mv cn_result.zip $cn_des_path 2>&1)"
fi

mv global_result.zip $global_des_path 2>&1
if [ $? -ne 0 ]; then
echo "Failed to move global_result.zip to $global_des_path. Error: $(mv global_result.zip $global_des_path 2>&1)"
fi

ls -al $WORKSPACE/
fi

if [ $compile_project = true ]; then
Expand Down
Loading