Re: [R-pkg-devel] Proper way to cleanup after build third party components?

2017-06-05 Thread Konstantin Sorokin
On Mon, Jun 5, 2017 at 1:13 AM, Dirk Eddelbuettel wrote: > > On 5 June 2017 at 00:51, Konstantin Sorokin wrote: > | This third party component is a compression library for which my package > | provides bindings and I need to build this library first. Look at the > lines > | starting from > | http

Re: [R-pkg-devel] Proper way to cleanup after build third party components?

2017-06-05 Thread Thibault Vatter
Hi Konstantin, Concerning CMake, I asked a similar question here: https://stat.ethz.ch/pipermail/r-package-devel/2017q2/001600.html Essentially, I wondered if there was a way to have CMake within an R package, but obviously having a system install of CMake would work in my case too. Hopefully a

[R-pkg-devel] unusually slow tests on win-builder

2017-06-05 Thread Jonathon Love
hi, i've uploaded a version of my package to the win-builder service, but it is reporting that one of my tests takes > 10 seconds to run. examining the log here: https://win-builder.r-project.org/BvR4nreDE9qP/00check.log the win-builder is taking 24 and 28 seconds to run this test. on my lo

Re: [R-pkg-devel] unusually slow tests on win-builder

2017-06-05 Thread Dason Kurkiewicz
The relevant output is below: * checking examples ... ** running examples for arch 'i386' ... [24s] NOTE Examples with CPU or elapsed time > 10s user system elapsed cfa 8.05 0.36 10.08 ** running examples for arch 'x64' ... [28s] NOTE Examples with CPU or elapsed time > 10s user syste

Re: [R-pkg-devel] unusually slow tests on win-builder

2017-06-05 Thread Jonathon Love
hi dason, yes, it looks like it's taking 10 seconds. 10 seconds still seems unusually long, and a lot longer than 600ms. any other suggestions as to what might be going on here? with thanks jonathon On 5/6/17 22:36, Dason Kurkiewicz wrote: The relevant output is below: * checking examples

Re: [R-pkg-devel] Proper way to cleanup after build third party components?

2017-06-05 Thread Dirk Eddelbuettel
On 5 June 2017 at 12:29, Konstantin Sorokin wrote: | zstandard is a young project and I think it is a bit to early to assume that | zstandard library be present in the system. For example on my Ubuntu 16.04 | (LTS) I have libzstd0/xenial 0.5.1-1 but the latest stable release has version | 1.2. I

Re: [R-pkg-devel] unusually slow tests on win-builder

2017-06-05 Thread Uwe Ligges
On 05.06.2017 14:48, Jonathon Love wrote: hi dason, yes, it looks like it's taking 10 seconds. 10 seconds still seems unusually long, and a lot longer than 600ms. So your windows installation of R-3.4.0 can solve this in 600ms? Or is yoiur another OS? For winbuilder, it could be it was h

Re: [R-pkg-devel] unusually slow tests on win-builder

2017-06-05 Thread Jonathon Love
So your windows installation of R-3.4.0 can solve this in 600ms? Or is yoiur another OS? ah, yes, another OS. it turns out on windows this takes 6 seconds. the issue is that we only load imports on demand (not in our NAMESPACE), there's a behemoth dependency chain that that analysis invokes,