mkdir build
cd build
cmake -DUNIT_TESTING=1 -DBUILD_WITH_QT4=ON ..
- make
+ make -j4
ctest --output-on-failure'''
stage 'Qt4 - clang'
mkdir build
cd build
cmake -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DUNIT_TESTING=1 -DBUILD_WITH_QT4=ON ..
- make
+ make -j4
ctest --output-on-failure'''
stage 'Qt5'
mkdir build
cd build
cmake -DUNIT_TESTING=1 -DBUILD_WITH_QT4=OFF ..
- make
+ make -j4
ctest --output-on-failure'''
stage 'Qt5 - clang'
mkdir build
cd build
cmake -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DUNIT_TESTING=1 -DBUILD_WITH_QT4=OFF ..
- make
+ make -j4
ctest --output-on-failure'''