Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
FluidDoc
提交
adaad840
F
FluidDoc
项目概览
PaddlePaddle
/
FluidDoc
通知
7
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
23
列表
看板
标记
里程碑
合并请求
111
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
F
FluidDoc
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
23
Issue
23
列表
看板
标记
里程碑
合并请求
111
合并请求
111
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
adaad840
编写于
9月 22, 2020
作者:
C
chentianyu03
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add cn doc and en doc check
上级
5c32b48a
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
28 addition
and
8 deletion
+28
-8
ci_scripts/check_api_cn.sh
ci_scripts/check_api_cn.sh
+26
-8
ci_scripts/checkapproval.sh
ci_scripts/checkapproval.sh
+2
-0
未找到文件。
ci_scripts/check_api_cn.sh
浏览文件 @
adaad840
...
...
@@ -30,8 +30,11 @@ function find_need_check_files() {
done
}
need_check_cn_doc_files
=
`
git diff
--numstat
upstream/
$BRANCH
|
awk
'{print $NF}'
|
grep
"doc/paddle/api/paddle/.*_cn.rst"
|
sed
's#doc/##g'
`
echo
$need_check_cn_doc_files
find_need_check_files
if
[
-z
"
$need_check_files
"
]
if
[
"
$need_check_files
"
=
""
-a
"
$need_check_cn_doc_files
"
=
"
"
]
then
echo
"need check files is empty, skip chinese api check"
else
...
...
@@ -42,11 +45,26 @@ else
exit
5
fi
for
file
in
$need_check_files
;
do
python chinese_samplecode_processor.py ../
$file
if
[
$?
-ne
0
]
;
then
echo
"chinese sample code failed"
exit
5
fi
done
if
[
"
${
need_check_files
}
"
!=
""
]
;
then
for
file
in
$need_check_files
;
do
python chinese_samplecode_processor.py ../
$file
if
[
$?
-ne
0
]
;
then
echo
"chinese sample code failed, the file is
${
file
}
"
exit
5
fi
done
fi
if
[
"
${
need_check_cn_doc_files
}
"
!=
""
]
;
then
cd
../doc/paddle/api
python gen_doc.py
cd
-
for
file
in
$need_check_cn_doc_files
;
do
cat
../doc/paddle/api/en_cn_files_diff |
awk
'{print $1}'
|
grep
${
file
}
if
[
$?
-eq
0
]
;
then
echo
"Chinese doc file exist, but the Englist doc does not exist, the Chinese file is
${
file
}
"
fi
done
fi
fi
ci_scripts/checkapproval.sh
浏览文件 @
adaad840
#!/bin/bash
set
-x
API_FILES
=(
"doc/paddle/api/paddle"
)
for
API_FILE
in
${
API_FILES
[*]
}
;
do
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录