Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Crayon鑫
Paddle
提交
91be8769
P
Paddle
项目概览
Crayon鑫
/
Paddle
与 Fork 源项目一致
Fork自
PaddlePaddle / Paddle
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
91be8769
编写于
8月 04, 2021
作者:
zhouweiwei2014
提交者:
GitHub
8月 04, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
support set BUILD_DIR for windows CI (#34595)
上级
ee60e828
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
20 addition
and
19 deletion
+20
-19
paddle/scripts/paddle_build.bat
paddle/scripts/paddle_build.bat
+20
-19
未找到文件。
paddle/scripts/paddle_build.bat
浏览文件 @
91be8769
...
...
@@ -75,6 +75,7 @@ if not defined PRECISION_TEST set PRECISION_TEST=OFF
if
not
defined
NIGHTLY_MODE
set
PRECISION_TEST
=
OFF
if
not
defined
retry_times
set
retry_times
=
3
if
not
defined
PYTHON_ROOT
set
PYTHON_ROOT
=
C
:\Python37
if
not
defined
BUILD_DIR
set
BUILD_DIR
=
build
rem ------initialize the python environment------
set
PYTHON_EXECUTABLE
=
%PYTHON_ROOT%
\python.exe
...
...
@@ -91,16 +92,16 @@ if "%WITH_PYTHON%" == "ON" (
)
rem -------Caching strategy 1: keep build directory for incremental compilation-----------
rmdir
build
\python
/s/q
rmdir
build
\paddle\third_party\externalError
/s/q
rem rmdir
build
\paddle\fluid\pybind /s/q
rmdir
build
\paddle_install_dir
/s/q
rmdir
build
\paddle_inference_install_dir
/s/q
rmdir
build
\paddle_inference_c_install_dir
/s/q
del
build
\CMakeCache.txt
rmdir
%BUILD_DIR%
\python
/s/q
rmdir
%BUILD_DIR%
\paddle\third_party\externalError
/s/q
rem rmdir
%BUILD_DIR%
\paddle\fluid\pybind /s/q
rmdir
%BUILD_DIR%
\paddle_install_dir
/s/q
rmdir
%BUILD_DIR%
\paddle_inference_install_dir
/s/q
rmdir
%BUILD_DIR%
\paddle_inference_c_install_dir
/s/q
del
%BUILD_DIR%
\CMakeCache.txt
if
"
%WITH_CACHE%
"
==
"OFF"
(
rmdir
build
/s/q
rmdir
%BUILD_DIR%
/s/q
goto
:mkbuild
)
...
...
@@ -108,7 +109,7 @@ set error_code=0
type
%cache_dir%
\error_code.txt
:
set
/p
error_code
=<
%cache_dir%
\error_code.txt
if
%error_code%
NEQ
0
(
rmdir
build
/s/q
rmdir
%BUILD_DIR%
/s/q
goto
:mkbuild
)
...
...
@@ -118,12 +119,12 @@ if %ERRORLEVEL% EQU 0 (
git
diff
HEAD
last_pr
--stat --name-only
git
diff
HEAD
last_pr
--stat --name-only
|
findstr
"setup.py.in"
if
!ERRORLEVEL!
EQU
0
(
rmdir
build
/s/q
rmdir
%BUILD_DIR%
/s/q
)
git
branch
-D
last_pr
git
branch
last_pr
)
else
(
rmdir
build
/s/q
rmdir
%BUILD_DIR%
/s/q
git
branch
last_pr
)
...
...
@@ -134,21 +135,21 @@ set /p day_before=< %cache_dir%\day.txt
if
%day_now%
NEQ
%day_before%
(
echo
%day_now%
>
%cache_dir%
\day.txt
type
%cache_dir%
\day.txt
rmdir
build
/s/q
rmdir
%BUILD_DIR%
/s/q
goto
:mkbuild
)
:mkbuild
if
not
exist
build
(
if
not
exist
%BUILD_DIR%
(
echo
Windows
build
cache
FALSE
set
Windows_Build_Cache
=
FALSE
mkdir
build
mkdir
%BUILD_DIR%
)
else
(
echo
Windows
build
cache
TRUE
set
Windows_Build_Cache
=
TRUE
)
echo
ipipe_log_param_Windows_Build_Cache
:
%Windows_Build_Cache%
cd
/d
build
cd
/d
%BUILD_DIR%
dir
.
dir
%cache_dir%
dir
paddle
\fluid\pybind\Release
...
...
@@ -342,7 +343,7 @@ if %day_now% NEQ %day_before% (
)
if
"
%WITH_TPCACHE%
"
==
"OFF"
(
set
THIRD_PARTY_PATH
=
%work
_dir:\
=
/
%
/
build
/third
_party
set
THIRD_PARTY_PATH
=
%work
_dir:\
=
/
%
/
%BUILD_DIR%
/third
_party
goto
:cmake
_impl
)
...
...
@@ -651,7 +652,7 @@ echo ========================================
echo
Step
6
.
Check
whether
deleting
a
unit
test
...
echo
========================================
cd
/d
%work_dir%
\
build
cd
/d
%work_dir%
\
%BUILD_DIR%
echo
set
-e
>
check_change_of_unittest
.sh
echo
set
+x
>>
check_change_of_unittest
.sh
echo
GITHUB_API_TOKEN
=
%GITHUB_API_TOKEN%
>>
check_change_of_unittest
.sh
...
...
@@ -729,7 +730,7 @@ exit /b 1
rem ---------------------------------------------------------------------------------------------
:zip
_cc_file
cd
/d
%work_dir%
\
build
cd
/d
%work_dir%
\
%BUILD_DIR%
tree
/F
%cd%
\paddle_inference_install_dir\paddle
if
exist
paddle_inference
.zip
del
paddle_inference
.zip
python
-c
"import shutil;shutil.make_archive('paddle_inference', 'zip', root_dir='paddle_inference_install_dir')"
...
...
@@ -747,7 +748,7 @@ exit /b 1
rem ---------------------------------------------------------------------------------------------
:zip
_c_file
cd
/d
%work_dir%
\
build
cd
/d
%work_dir%
\
%BUILD_DIR%
tree
/F
%cd%
\paddle_inference_c_install_dir\paddle
if
exist
paddle_inference_c
.zip
del
paddle_inference_c
.zip
python
-c
"import shutil;shutil.make_archive('paddle_inference_c', 'zip', root_dir='paddle_inference_c_install_dir')"
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录