Error Travis CI R package oldrel: no result obtained in the last 10 minutes

I recently connected a github repository containing an R package for Travis CI. The package builds with the current release ( release) and development release ( devel) R, but gives an error with the old version ( oldrelthat is, R version 3.2.5).

The line does not throw an error, but ends with the following message:

No output has been received in the last 10m0s, this potentially indicates
a stalled build or something wrong with the build itself.

The build has been terminated

Here you can find the latest builds: https://travis-ci.org/lnalborczyk/ESTER

And my file .travis.yml:

language: R
sudo: false
cache: packages
r:
- oldrel
- release
- devel

Does anyone know what could be causing this problem and will this behavior be problematic in terms of presentation in CRAN?

EDIT

, travis_wait , , ( ~ 5 .) , R (. ).

+4
1
+2

Source: https://habr.com/ru/post/1687145/


All Articles