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 07d2e0f commit 81e0f5aCopy full SHA for 81e0f5a
paddle/scripts/docker/build.sh
@@ -35,11 +35,11 @@ cmake .. \
35
-DWITH_SWIG_PY=ON \
36
-DCUDNN_ROOT=/usr/ \
37
-DWITH_STYLE_CHECK=${WITH_STYLE_CHECK:-OFF} \
38
- -DON_COVERALLS=${WITH_TEST:-OFF} \
+ -DWITH_TESTING=${WITH_TESTING:-OFF} \
39
-DCMAKE_EXPORT_COMPILE_COMMANDS=ON
40
make -j `nproc`
41
-if [[ ${RUN_TEST:-OFF} == "ON" ]]; then
42
- make coveralls
+if [ ${WITH_TESTING:-OFF} == "ON" ] && [ ${RUN_TEST:-OFF} == "ON" ] ; then
+ make test
43
fi
44
make install
45
pip install /usr/local/opt/paddle/share/wheels/*.whl
0 commit comments