We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1700336 commit 394bb8cCopy full SHA for 394bb8c
paddle/scripts/paddle_build.bat
@@ -24,7 +24,11 @@ rem -------clean up environment-----------
24
set work_dir=%cd%
25
if not defined cache_dir set cache_dir=%work_dir:Paddle=cache%
26
if not exist %cache_dir%\tools (
27
- git clone https://github.com/zhouwei25/tools.git %cache_dir%\tools
+ 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
32
)
33
taskkill /f /im cmake.exe /t 2>NUL
34
taskkill /f /im ninja.exe /t 2>NUL
0 commit comments