Skip to content

Commit

Permalink
release 1.1.16
Browse files Browse the repository at this point in the history
  • Loading branch information
tungdev1209 committed Sep 29, 2021
1 parent 785ba30 commit a0ce44b
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
Binary file not shown.
2 changes: 1 addition & 1 deletion helper/xcode-ci-archive.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ n=$(tput sgr0)
deploy_config_path="$(pwd)/.ci/deploy_config.json"
process_path="$(pwd)/.ci/process.json"
helper_path=$(dirname "$0")
process_value_cmd="python ${helper_path}/py_jsonvalue.py -p ${process_path}"
process_value_cmd="python3 ${helper_path}/py_jsonvalue.py -p ${process_path}"
archive_file_path="${archive_path}/${archive_scheme}.xcarchive"
merge_args_cmd="sh ${helper_path}/xcode-ci-merge-args.sh"

Expand Down
4 changes: 2 additions & 2 deletions helper/xcode-ci-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ project_file_path="$1"
deploy_config_path="$(pwd)/.ci/deploy_config.json"
process_path="$(pwd)/.ci/process.json"
helper_path=$(dirname "$0")
process_value_cmd="python ${helper_path}/py_jsonvalue.py -p ${process_path}"
process_value_cmd="python3 ${helper_path}/py_jsonvalue.py -p ${process_path}"

project_dir=$(jq ".project_path" ${deploy_config_path} | tr -d \")
product_des_input=$(jq ".build_path" ${deploy_config_path} | tr -d \")
Expand Down Expand Up @@ -154,7 +154,7 @@ function export_derived_data_path() {
# echo "execute settings cmd >>> $settings_cmd"
eval $settings_cmd

derived_build_dir=$(python ${helper_path}/py_file_get_value.py -p .ci/build_dirs.log -k TARGET_BUILD_DIR)
derived_build_dir=$(python3 ${helper_path}/py_file_get_value.py -p .ci/build_dirs.log -k TARGET_BUILD_DIR)
derived_test_dir="$derived_build_dir/../../ProfileData"
}

Expand Down
2 changes: 1 addition & 1 deletion helper/xcode-ci-export.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ deploy_config_path="$(pwd)/.ci/deploy_config.json"
export_config_path="$(pwd)/.ci/export_config.plist"
process_path="$(pwd)/.ci/process.json"
helper_path=$(dirname "$0")
process_value_cmd="python ${helper_path}/py_jsonvalue.py -p ${process_path}"
process_value_cmd="python3 ${helper_path}/py_jsonvalue.py -p ${process_path}"
merge_args_cmd="sh ${helper_path}/xcode-ci-merge-args.sh"

remain_value=''
Expand Down
2 changes: 1 addition & 1 deletion helper/xcode-ci-merge-args.sh
Original file line number Diff line number Diff line change
Expand Up @@ -112,5 +112,5 @@ do
ci_cmd_args+=";${var}"
fi
done
args=$(python ${helper_path}/py_merge_args.py -a "${ci_cmd_args}")
args=$(python3 ${helper_path}/py_merge_args.py -a "${ci_cmd_args}")
echo $args
8 changes: 4 additions & 4 deletions xcode-ci
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
# created by TungNQ

version="1.1.15"
version="1.1.16"

if [ "$1" == "__test_cmd" ]; then
echo "ok"
Expand Down Expand Up @@ -81,8 +81,8 @@ done
# define processes
process_path="${deploy_path}/process.json"
touch ${process_path}
python ${helper_path}/py_jsoncreate.py -v "${ci_cmd_args}" -p ${process_path}
process_value_cmd="python ${helper_path}/py_jsonvalue.py -p ${process_path} "
python3 ${helper_path}/py_jsoncreate.py -v "${ci_cmd_args}" -p ${process_path}
process_value_cmd="python3 ${helper_path}/py_jsonvalue.py -p ${process_path} "

destroy()
{
Expand Down Expand Up @@ -120,7 +120,7 @@ if [ "${is_build}" == "1" ] || [ "${is_test}" == "1" ]; then
${build_cmd}

# Get derived data path
derived_build_dir=$(python ${helper_path}/py_file_get_value.py -p .ci/build_dirs.log -k BUILD_DIR)
derived_build_dir=$(python3 ${helper_path}/py_file_get_value.py -p .ci/build_dirs.log -k BUILD_DIR)
rm -rf .ci/build_dirs.log

# Run Post Build/Test job
Expand Down

0 comments on commit a0ce44b

Please sign in to comment.