未验证 提交 64d08c0e 编写于 作者: S Sing_chan 提交者: GitHub

fix bug of upload third party to bos (#36311)

上级 642aaa2e
......@@ -395,15 +395,15 @@ if not exist %THIRD_PARTY_PATH% (
echo Getting third party: extracting ...
tar -xf %md5%.tar.gz
if !ERRORLEVEL! EQU 0 (
echo Get third party from bos successfully
echo Get third party from bos successfully.
) else (
echo Get third party failed, reason: extract failed, will build locally
echo Get third party failed, reason: extract failed, will build locally.
)
del %md5%.tar.gz
) else (
echo Get third party failed, reason: download failed, will build locally
echo Get third party failed, reason: download failed, will build locally.
)
if not exist %THIRD_PARTY_PATH% ( set UPLOAD_TP_FILE=ON )
if not exist %THIRD_PARTY_PATH% set UPLOAD_TP_FILE=ON
cd %work_dir%\%BUILD_DIR%
) else (
echo Found reusable third_party cache in %THIRD_PARTY_PATH%, will reuse it.
......@@ -540,18 +540,18 @@ if "%UPLOAD_TP_FILE%"=="ON" (
tar -zcf %md5%.tar.gz %md5%
if !errorlevel! EQU 0 (
echo Uploading third_party: uploading ...
%PYTHON_ROOT%\python.exe %BCE_FILE% %md5%.tar.gz paddle-windows/third_party/%sub_dir% 1>nul
%PYTHON_ROOT%\python.exe !BCE_FILE! %md5%.tar.gz paddle-windows/third_party/%sub_dir% 1>nul
if !errorlevel! EQU 0 (
echo Upload third party to bos paddle-windows/third_party/%sub_dir% successfully
echo Upload third party %md5% to bos paddle-windows/third_party/%sub_dir% successfully.
) else (
echo Failed upload third party to bos, reason: upload failed
echo Failed upload third party to bos, reason: upload failed.
)
) else (
echo Failed upload third party to bos, reason: compress failed
echo Failed upload third party to bos, reason: compress failed.
)
del %md5%.tar.gz
) else (
echo Failed upload third party to bos, reason: install bce failed
echo Failed upload third party to bos, reason: install bce failed.
)
cd %work_dir%\%BUILD_DIR%
)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册