提交 b5de0166 编写于 作者: M minqiyang

Pass the INFERENCE CI when WITH_INFERENCE is OFF

上级 3420c949
...@@ -554,7 +554,7 @@ function gen_capi_package() { ...@@ -554,7 +554,7 @@ function gen_capi_package() {
function gen_fluid_inference_lib() { function gen_fluid_inference_lib() {
mkdir -p ${PADDLE_ROOT}/build mkdir -p ${PADDLE_ROOT}/build
cd ${PADDLE_ROOT}/build cd ${PADDLE_ROOT}/build
if [ ${WITH_C_API:-OFF} == "OFF" ] ; then if [[ ${WITH_C_API:-OFF} == "OFF" && ${WITH_INFERENCE:-ON} == "ON" ]] ; then
cat <<EOF cat <<EOF
======================================== ========================================
Deploying fluid inference library ... Deploying fluid inference library ...
...@@ -569,7 +569,7 @@ EOF ...@@ -569,7 +569,7 @@ EOF
} }
function test_fluid_inference_lib() { function test_fluid_inference_lib() {
if [ ${WITH_C_API:-OFF} == "OFF" ] ; then if [[ ${WITH_C_API:-OFF} == "OFF" && ${WITH_INFERENCE:-ON} == "ON" ]] ; then
cat <<EOF cat <<EOF
======================================== ========================================
Testing fluid inference library ... Testing fluid inference library ...
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册