Skip to content

Commit 2ab336a

Browse files
committed
Fix cmake travis-CI script
CMake variable setting was missing a value (to control MPI search)
1 parent 0ac78de commit 2ab336a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

developer-scripts/travis/test-script.cmake.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ for version in ${GCC}; do
5959
-DCMAKE_BUILD_TYPE:STRING="${BUILD_TYPE}" \
6060
-DMPI_CXX_SKIP_MPICXX:BOOL=ON \
6161
-DMPI_ASSUME_NO_BUILTIN_MPI:BOOL=ON \
62-
-DMPI_SKIP_GUESSING ..
62+
-DMPI_SKIP_GUESSING:BOOL=ON\
63+
..
6364
make -j 4
6465
CTEST_FLAGS=(--output-on-failure --schedule-random --repeat-until-fail "${NREPEAT:-5}" --timeout "${TEST_TIMEOUT:-200}")
6566
if [[ "${BUILD_TYPE}" =~ Deb ]]; then

0 commit comments

Comments
 (0)