Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
gaborcsardi committed Sep 5, 2024
1 parent 20cf495 commit 015202f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cran.r-project.org/web/checks/check_flavors.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<div class="container">
<h2>CRAN Package Check Flavors</h2>
<p>
Last updated on 2024-09-03 06:49:45 CEST.
Last updated on 2024-09-05 06:49:27 CEST.
</p>
<p>
Systems used for CRAN package checking.
Expand Down
2 changes: 1 addition & 1 deletion cran.r-project.org/web/checks/check_issue_kinds.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<div class="container">
<h2>CRAN Package Check Issue Kinds</h2>
<p>
Last updated on 2024-09-03 06:49:45 CEST.
Last updated on 2024-09-05 06:49:27 CEST.
</p>
<table border="1">
<tr> <th> Kind </th> <th> Description </th> <th> Details </th> </tr>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ _R_CHECK_PACKAGES_USED_IGNORE_UNUSED_IMPORTS_=true
_R_CHECK_PACKAGES_USED_IN_TESTS_USE_SUBDIRS_=true
_R_CHECK_PRAGMAS_=true
## _R_CHECK_RD_CONTENTS_KEYWORDS_=true
_R_CHECK_RD_MATH_RENDERING_=true
_R_CHECK_RD_MATH_RENDERING_=${_R_CHECK_RD_MATH_RENDERING_-true}
_R_CHECK_RD_NOTE_LOST_BRACES_=${_R_CHECK_RD_NOTE_LOST_BRACES_-true}
_R_CHECK_RD_VALIDATE_RD2HTML_=${_R_CHECK_RD_VALIDATE_RD2HTML_-true}
## _R_CHECK_R_DEPENDS_=warn
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ usage <- function() {
" -r~PKGLIST also check revdeps in PKGLIST",
" -N=N use N CPUs",
" -f=FLAVOR use flavor FLAVOR ('g' or 'c' for the GCC or Clang",
" defaults, 'g/v' or 'c/v' for the version 'v' ones)",
" defaults, 'g/v' or 'c/v' for the specific 'v' ones)",
" -d=DIR use DIR as check dir (default: ~/tmp/CRAN)",
" -l run local incoming checks only",
" -a=ARGS pass ARGS to R CMD check",
Expand Down Expand Up @@ -210,7 +210,9 @@ check_env_common <-
)
check_env <-
list(c(check_env_common,
"_R_CHECK_CRAN_INCOMING_=true",
sprintf("_R_CHECK_CRAN_INCOMING_=%s",
Sys.getenv("_R_CHECK_CRAN_INCOMING_", "true")),
## "_R_CHECK_CRAN_INCOMING_=true",
"_R_CHECK_CRAN_INCOMING_REMOTE_=true",
"_R_CHECK_CRAN_INCOMING_CHECK_FILE_URIS_=true",
"_R_CHECK_CRAN_INCOMING_NOTE_GNU_MAKE_=true",
Expand Down

0 comments on commit 015202f

Please sign in to comment.