Re: [R-pkg-devel] Connection time-out when checking a package

2025-04-02 Thread Simon Urbanek
FWIW: connectivity from GH runners is notoriously patchy*, so I wouldn’t rely on those for URL checks, so I’d recommend using the solution by Ivan in actions and simply running a separate check without the option once in a while locally (e.g., before submission) to detect such issues. After all,

Re: [R-pkg-devel] Connection time-out when checking a package

2025-04-02 Thread Thierry Onkelinx
Dear Ivan, Thanks for the feedback. Skipping all URL checks is not an ideal solution. Getting a NOTE for a broken link is valuable. Given that the problem occurs over several repositories but always with the gnu.org domain, I was hoping for a more tailored solution. Removing the problematic URL i

Re: [R-pkg-devel] Connection time-out when checking a package

2025-04-02 Thread Ivan Krylov via R-package-devel
В Tue, 1 Apr 2025 14:28:04 +0200 Thierry Onkelinx пишет: > Any suggestions how to fix this note without removing the > URL for the README? I think it should be possible to set the environment variable _R_CHECK_CRAN_INCOMING_REMOTE_=FALSE to disable the "remote" checks [*] (including checks for r

[R-pkg-devel] Connection time-out when checking a package

2025-04-01 Thread Thierry Onkelinx
Dear all, When checking a package via a GitHub action I often (but not always) get a connection-time out for the GNU license page. The github actions runs the code below Sys.setenv("R_DEFAULT_INTERNET_TIMEOUT" = 360) options(timeout = max(360, getOption("timeout"))) rcmdcheck::rcmdcheck