Re: [R-pkg-devel] Running tests on 32-bit and 64-bit

2015-08-19 Thread Thierry Onkelinx
Dear all, Thanks for the feedback. @Uwe I'll have a look at winbuilder. Can it handle non-CRAN dependencies? E.g. packages which are available on github or bitbucket? I was rather looking for something which can run on my local machine. That would give me faster feedback than a remote system. My

Re: [R-pkg-devel] Running tests on 32-bit and 64-bit

2015-08-17 Thread Kasper Daniel Hansen
Perhaps related: in the Bioconductor minfi package I do some checking on somewhat large matrices (450,000 times n). To save space, I compute a hash of the correct result using the digest package. As you, I ran into obvious issues with precision across platforms. To solve this, I take the matrix

Re: [R-pkg-devel] Running tests on 32-bit and 64-bit

2015-08-17 Thread Duncan Murdoch
On 17/08/2015 5:03 AM, Thierry Onkelinx wrote: > Dear all, > > Is there an easy way to run the tests of a package on both a 32-bit and > 64-bit version? Ideally it should work when using R CMD check --as-cran on > all OS's. Although I expect that multi architecture versions are only > available on

Re: [R-pkg-devel] Running tests on 32-bit and 64-bit

2015-08-17 Thread Uwe Ligges
Use winbuilder, it runs 32-bit and 64-bit R tests on a Windows 64-bit platform. Not sure how you implemented the different precisions, but just go ahead and try on winbiulder. Best, Uwe Ligges On 17.08.2015 11:03, Thierry Onkelinx wrote: Dear all, Is there an easy way to run the tests of a

[R-pkg-devel] Running tests on 32-bit and 64-bit

2015-08-17 Thread Thierry Onkelinx
Dear all, Is there an easy way to run the tests of a package on both a 32-bit and 64-bit version? Ideally it should work when using R CMD check --as-cran on all OS's. Although I expect that multi architecture versions are only available on windows. So a Windows only solution will be fine as well.