Skip to content

Commit 8aa3344

Browse files
committed
Revert travis_wait invocations in scripts
Function seems to be unavailable/out of scope.
1 parent 12f046e commit 8aa3344

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ for version in ${GCC}; do
4141
-DCMAKE_INSTALL_PREFIX:PATH="${HOME}/OpenCoarrays" \
4242
-DCMAKE_BUILD_TYPE:STRING="${BUILD_TYPE}" \
4343
..
44-
${TRAVIS:+ travis_wait} make -j 4
44+
make -j 4
4545
printf '\nDone compiling OpenCoarrays and tests!\n\n'
4646
CTEST_FLAGS=(--output-on-failure --schedule-random --repeat-until-fail "${NREPEAT:-5}" --timeout "${TEST_TIMEOUT:-200}")
4747
if [[ "${BUILD_TYPE}" =~ Deb ]]; then
48-
${TRAVIS:+ travis_wait} ctest "${CTEST_FLAGS[@]}" > "${BUILD_TYPE}.log" || cat "${BUILD_TYPE}.log"
48+
ctest "${CTEST_FLAGS[@]}" > "${BUILD_TYPE}.log" || cat "${BUILD_TYPE}.log"
4949
else
50-
${TRAVIS:+ travis_wait} ctest "${CTEST_FLAGS[@]}"
50+
ctest "${CTEST_FLAGS[@]}"
5151
fi
5252
make install
5353
make uninstall

0 commit comments

Comments
 (0)