未验证 提交 d58cca9e 编写于 作者: R risemeup1 提交者: GitHub

modify mac_whl_name (#49586)

上级 93f20a07
...@@ -3680,10 +3680,18 @@ function run_setup(){ ...@@ -3680,10 +3680,18 @@ function run_setup(){
ccache -z ccache -z
cd .. cd ..
if [ "${PYTHON_EXECUTABLE}" != "" ];then if [ "${PYTHON_EXECUTABLE}" != "" ];then
if [ "$SYSTEM" == "Darwin" ]; then
${PYTHON_EXECUTABLE} setup.py $2 --plat-name=macosx_10_9_x86_64;build_error=$?
else
${PYTHON_EXECUTABLE} setup.py $2;build_error=$? ${PYTHON_EXECUTABLE} setup.py $2;build_error=$?
fi
else
if [ "$SYSTEM" == "Darwin" ]; then
python setup.py $2 --plat-name=macosx_10_9_x86_64;build_error=$?
else else
python setup.py $2;build_error=$? python setup.py $2;build_error=$?
fi fi
fi
# ci will collect ccache hit rate # ci will collect ccache hit rate
collect_ccache_hits collect_ccache_hits
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册