未验证 提交 8bc40c84 编写于 作者: Y Yang yaming 提交者: GitHub

Merge pull request #625 from pkuyym/fix-623

Adapt CI to support test of projects in fluid directory.
...@@ -24,11 +24,22 @@ unittest(){ ...@@ -24,11 +24,22 @@ unittest(){
trap 'abort' 0 trap 'abort' 0
set -e set -e
for proj in */ ; do for proj in * ; do
if [ -d $proj ]; then if [ -d $proj ]; then
unittest $proj if [ "$proj" = "fluid" ]; then
if [ $? != 0 ]; then for proj in fluid/* ; do
exit 1 if [ -d $proj ]; then
unittest $proj
if [ $? != 0 ]; then
exit 1
fi
fi
done
else
unittest $proj
if [ $? != 0 ]; then
exit 1
fi
fi fi
fi fi
done done
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册