Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Potential release blocker] R CMD CHECK NOTE: sub-directories of 1Mb or more: #1391

Open
m7pr opened this issue Oct 22, 2024 · 4 comments
Open
Labels

Comments

@m7pr
Copy link
Contributor

m7pr commented Oct 22, 2024

* checking installed package size ... NOTE
		  installed size is 10.3Mb
		  sub-directories of 1Mb or more:
		    doc    4.7Mb
		    help   3.2Mb

We may revisit the size of our documentation if this is a blocker for the CRAN release.

sessionInfo()

http://cedar.gene.com/gran/dev/SinglePkgLogs/teal.log
@llrs-roche
Copy link
Contributor

This might not be a blocker, but should be explained to CRAN, see this receipt.

@m7pr
Copy link
Contributor Author

m7pr commented Nov 13, 2024

Hey, this is no longer visible. Probably it was temporary. This is what I see on main when I build the package - it has 3Mbs in total

devtools::build()
file.size('C:/Rprojects/teal_0.15.2.9085.tar.gz')/1000000
# 3 Mbs
untar('C:/Rprojects/teal_0.15.2.9085.tar.gz', exdir = 'memory_test')

file.size('memory_test/teal/inst/doc')/1000000
# 0.01 Mbs

@m7pr
Copy link
Contributor Author

m7pr commented Nov 13, 2024

But still visible here http://cedar.gene.com/gran/dev/SinglePkgLogs/teal.log

Is this platform related?

pkg: teal ( Mon Nov 11 06:10:18 2024 ) -  	Forcing rebuild of version 0.15.2.9084.
  pkg: teal ( Mon Nov 11 06:10:19 2024 ) -  	Successfully built package.


  pkg: teal ( Mon Nov 11 06:16:51 2024 ) -  	Successfully checked out package source from https://gran:gldt-fDqzvirg_v-ivah2w4W-@code.roche.com/nest/insights-engineering/teal.git on branch main
  pkg: teal ( Mon Nov 11 06:16:51 2024 ) -  	Temporary source directory successfully created: TRUE
  pkg: teal ( Mon Nov 11 06:16:51 2024 ) -  	Had version 0.15.2.9084. Building new version 0.15.2.9085
  pkg: teal ( Mon Nov 11 06:16:52 2024 ) -  	Successfully built package.
  pkg: teal ( Mon Nov 11 06:17:10 2024 ) -  	Successfully installed package teal from temporary repository
  pkg: teal ( Mon Nov 11 06:17:10 2024 ) -  	Had version NA. Building new version 0.15.2.9085
  pkg: teal ( Mon Nov 11 06:17:30 2024 ) -  	Successfully built package.
  pkg: teal ( Mon Nov 11 06:17:30 2024 ) -  	Running R CMD check on  /mnt/gran_dir/GRANbuilds/dev/staging/teal_0.15.2.9085.tar.gz
  WARNING  pkg: teal ( Mon Nov 11 06:20:07 2024 ) -  	R CMD check raised notes.
  WARNING  pkg: teal ( Mon Nov 11 06:20:07 2024 ) -  	R CMD check output:
		* using log directory/mnt/gran_dir/GRANbuilds/dev/staging/teal.Rcheck* using R Under development (unstable) (2023-12-04 r85659)
		* using platform: x86_64-pc-linux-gnu
		* R was compiled by
		    gcc (Ubuntu 9.4.0-1ubuntu1~18.04) 9.4.0
		    GNU Fortran (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0
		* running under: Ubuntu 18.04.6 LTS
		* using session charset: UTF-8
		* using option--no-build-vignettes* checking for fileteal/DESCRIPTION... OK
		* checking extension type ... Package
		* this is packagetealversion0.15.2.9085* package encoding: UTF-8
		* checking package namespace information ... OK
		* checking package dependencies ... OK
		* checking if this is a source package ... OK
		* checking if there is a namespace ... OK
		* checking for executable files ... OK
		* checking for hidden files and directories ... OK
		* checking for portable file names ... OK
		* checking for sufficient/correct file permissions ... OK
		* checking whether packagetealcan be installed ... OK
		* checking installed package size ... NOTE
		  installed size is  9.9Mb
		  sub-directories of 1Mb or more:
		    doc    4.3Mb
		    help   3.2Mb
		* checking package directory ... OK
		* checkingbuilddirectory ... OK
		* checking DESCRIPTION meta-information ... OK
		* checking top-level files ... OK
		* checking for left-over files ... OK
		* checking index information ... OK
		* checking package subdirectories ... OK
		* checking R files for non-ASCII characters ... OK
		* checking R files for syntax errors ... OK
		* checking whether the package can be loaded ... OK
		* checking whether the package can be loaded with stated dependencies ... OK
		* checking whether the package can be unloaded cleanly ... OK
		* checking whether the namespace can be loaded with stated dependencies ... OK
		* checking whether the namespace can be unloaded cleanly ... OK
		* checking loading without being on the library search path ... OK
		* checking whether startup messages can be suppressed ... OK
		* checking dependencies in R code ... OK
		* checking S3 generic/method consistency ... OK
		* checking replacement functions ... OK
		* checking foreign function calls ... OK
		* checking R code for possible problems ... OK
		* checking Rd files ... OK
		* checking Rd metadata ... OK
		* checking Rd cross-references ... OK
		* checking for missing documentation entries ... OK
		* checking for code/documentation mismatches ... OK
		* checking Rd \usage sections ... OK
		* checking Rd contents ... OK
		* checking for unstated dependencies in examples ... OK
		* checking installed files frominst/doc... OK
		* checking files invignettes... OK
		* checking examples ... OK
		* checking for unstated dependencies intests... OK
		* checking tests ...
		 OK
		* checking for unstated dependencies in vignettes ... OK
		* checking package vignettes ininst/doc... OK
		* checking running R code from vignettes ...adding-support-for-reporting.RmdusingUTF-8... OKbootstrap-themes-in-teal.RmdusingUTF-8... OKcreating-custom-modules.RmdusingUTF-8... OKdata-as-shiny-module.RmdusingUTF-8... OKdata-transform-as-shiny-module.RmdusingUTF-8... OKfilter-panel.RmdusingUTF-8... OKgetting-started-with-teal.RmdusingUTF-8... OKincluding-data-in-teal-applications.RmdusingUTF-8... OKteal-options.RmdusingUTF-8... OK
		 OK
		* checking re-building of vignette outputs ... SKIPPED
		* checking PDF version of manual ... OK
		* DONE
		Status: 1 NOTE

@pawelru
Copy link
Contributor

pawelru commented Nov 18, 2024

could be related: insightsengineering/nestdevs-tasks#87

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants