tests: Parallelize more when compiling TW

This commit is contained in:
Tomas Babej 2020-12-10 00:03:12 -05:00
parent 6d74b62dc4
commit af5e81434f
No known key found for this signature in database
GPG key ID: B0747C6578F7D2F5
12 changed files with 24 additions and 24 deletions

View file

@ -19,12 +19,12 @@ RUN git clean -dfx
RUN git submodule init
RUN git submodule update
RUN source scl_source enable devtoolset-7; cmake -DCMAKE_BUILD_TYPE=debug .
RUN source scl_source enable devtoolset-7; make -j2
RUN source scl_source enable devtoolset-7; make -j8
RUN source scl_source enable devtoolset-7; make install
RUN task --version
# Setup tests
WORKDIR /root/code/test/
RUN source scl_source enable devtoolset-7; make
RUN source scl_source enable devtoolset-7; make -j8
CMD ["bash", "-c", "./run_all -v ; cat all.log | grep 'not ok' ; ./problems"]