File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -179,7 +179,7 @@ jobs:
179
179
install :
180
180
- cmake -H. -Bbuild '-DCMAKE_BUILD_TYPE=Release' '-DCMAKE_CXX_COMPILER=g++-5'
181
181
- cmake --build build -- -j4
182
- script : (cd build; ctest -V -L CORE)
182
+ script : (cd build; ctest -V -L CORE -j2 )
183
183
184
184
- stage : Test different OS/CXX/Flags
185
185
os : osx
@@ -190,7 +190,7 @@ jobs:
190
190
install :
191
191
- cmake -H. -Bbuild '-DCMAKE_BUILD_TYPE=Release' '-DCMAKE_OSX_ARCHITECTURES=x86_64'
192
192
- cmake --build build -- -j4
193
- script : (cd build; ctest -V -L CORE)
193
+ script : (cd build; ctest -V -L CORE -j2 )
194
194
195
195
196
196
# Run Coverity
@@ -243,7 +243,7 @@ install:
243
243
244
244
script :
245
245
- if [ -e bin/gcc ] ; then export PATH=$PWD/bin:$PATH ; fi ;
246
- - env UBSAN_OPTIONS=print_stacktrace=1 make -C regression test "CXX=${COMPILER}" "CXXFLAGS=-Wall -Werror -pedantic -O2 -g ${EXTRA_CXXFLAGS}"
246
+ - env UBSAN_OPTIONS=print_stacktrace=1 make -C regression test "CXX=${COMPILER}" "CXXFLAGS=-Wall -Werror -pedantic -O2 -g ${EXTRA_CXXFLAGS}" -j2
247
247
- make -C unit "CXX=${COMPILER}" "CXXFLAGS=-Wall -Werror -pedantic -O2 -g ${EXTRA_CXXFLAGS}" -j2
248
248
- make -C unit test
249
249
You can’t perform that action at this time.
0 commit comments