Skip to content

Commit 394bb8c

Browse files
authored
Normalize_CI_scripts (#56855)
1 parent 1700336 commit 394bb8c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

paddle/scripts/paddle_build.bat

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,11 @@ rem -------clean up environment-----------
2424
set work_dir=%cd%
2525
if not defined cache_dir set cache_dir=%work_dir:Paddle=cache%
2626
if not exist %cache_dir%\tools (
27-
git clone https://github.com/zhouwei25/tools.git %cache_dir%\tools
27+
cd /d cache_dir
28+
python -m pip install wget
29+
python -c "import wget;wget.download('https://paddle-ci.gz.bcebos.com/window_requirement/tools.zip')"
30+
tar xf tools.zip
31+
cd /d work_dir
2832
)
2933
taskkill /f /im cmake.exe /t 2>NUL
3034
taskkill /f /im ninja.exe /t 2>NUL

0 commit comments

Comments
 (0)