aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVasil Velichkov <vvvelichkov@gmail.com>2018-04-09 13:01:39 +0300
committerPiotr Krysik <ptrkrysik@gmail.com>2018-04-16 21:08:50 +0200
commit8b9b88d788cc5064c0f6d7aa60a14954aee59eab (patch)
tree626d4a3a1bd40cfdbf292231a681bd33a1f5ea38
parent084b14ea17f902c607aa295e18deee3ed32deb07 (diff)
Disable the parallel build on Fedora 26
There is a problem with cmake 3.11.0 and the parallel build fails with See https://github.com/ptrkrysik/gr-gsm/pull/378#issuecomment-379583050 make[2]: *** No rule to make target 'swig/grgsm_swig.py', needed by 'swig/grgsm_swig.pyc'. Stop. make[1]: *** [CMakeFiles/Makefile2:601: swig/CMakeFiles/pygen_swig_43235.dir/all] Error 2
-rw-r--r--tests/dockerfiles/Fedora_26.Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/dockerfiles/Fedora_26.Dockerfile b/tests/dockerfiles/Fedora_26.Dockerfile
index 8558d5b..745d89a 100644
--- a/tests/dockerfiles/Fedora_26.Dockerfile
+++ b/tests/dockerfiles/Fedora_26.Dockerfile
@@ -21,7 +21,7 @@ RUN cmake .. && \
# The parallel build sometimes fails when the .grc_gnuradio
# and .gnuradio directories do not exist
mkdir $HOME/.grc_gnuradio/ $HOME/.gnuradio/ && \
- make -j $(nproc) && \
+ make && \
make install && \
ldconfig && \
make test