Skip to content

Commit 84613b6

Browse files
committed
Merge branch 'master' of github.com:sourceryinstitute/OpenCoarrays into vehre/issue-292-type-conversion-during-communication
2 parents cfdf44a + 70038c9 commit 84613b6

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

.travis.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -184,14 +184,17 @@ script:
184184
cd cmake-build || echo 'cannot cd to cmake-build/'
185185
cmake -DCMAKE_INSTALL_PREFIX:PATH="${HOME}/OpenCoarrays" -DCMAKE_BUILD_TYPE="${BUILD_TYPE}" .. || echo "running cmake failed"
186186
make -j 4 || echo "running make failed"
187-
ctest --output-on-failure --schedule-random --repeat-until-fail ${NREPEAT:-5}
187+
ctest --output-on-failure --schedule-random --repeat-until-fail ${NREPEAT:-5} --timeout ${TEST_TIMEOUT:-200}
188188
make install
189189
make uninstall
190190
cd ..
191191
done
192192
fi
193193
194194
after_script:
195+
- find . -name '*.gcno' -print
196+
- gcov-${GCC} --version
197+
- bash <(curl -s https://codecov.io/bash) -x $(type -P gcov-${GCC})
195198
- |
196199
if [[ "${TRAVIS_TAG}" ]]; then
197200
if [[ "v${TRAVIS_TAG}" != "v$(sed -n '/[0-9]\{1,\}\(\.[0-9]\{1,\}\)\{1,\}/{s/^\([^.]*\)\([0-9]\{1,\}\(\.[0-9]\{1,\}\)\{1,\}\)\(.*\)/\2/p;q;}' .VERSION)" ]]; then
@@ -200,11 +203,6 @@ after_script:
200203
fi
201204
fi
202205
203-
after_success:
204-
- find . -name '*.gcno' -print
205-
- gcov-${GCC} --version
206-
- bash <(curl -s https://codecov.io/bash) -x $(type -P gcov-${GCC})
207-
208206
# before_deploy:
209207
# - git archive -v --prefix "OpenCoarrays-${TRAVIS_TAG}/" -o "OpenCoarrays-${TRAVIS_TAG}.tar.gz" ${TRAVIS_TAG}
210208
# - |

0 commit comments

Comments
 (0)