-
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add back Meta vignette index, standardize vignette names, and update …
…revdep folder
- Loading branch information
1 parent
b187cca
commit 65f182c
Showing
78 changed files
with
178 additions
and
4,648 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,22 @@ | ||
# Release summary | ||
|
||
## Test environments | ||
|
||
* Local OSX install, R 4.0.0 | ||
* Ubuntu 16.04 (xenial on Travis-CI) - R-release 4.0.0, R-oldrel (3.6.3), R-devel (eventually 4.1.0). | ||
* Windows (on Appveyor) - R 4.0.2 | ||
* Win-builder - R-release 4.0.0 | ||
* local mac OS install, R 4.0.2 | ||
* ubuntu 16.04 (on github actions), R-release, R 4.0.2 | ||
* mac OS 10.15.5 (on github actions) R-release, R 4.0.2 | ||
* Microsoft Windows Server 2019 10.0.17763 (on github actions) R-release, R 4.0.2 | ||
* win-builder (devel) | ||
|
||
## R CMD check results | ||
|
||
0 ERRORs | 0 WARNINGs | 0 NOTEs | ||
|
||
---- | ||
|
||
## revdepcheck results | ||
|
||
We checked 0 reverse dependencies, comparing R CMD check results across CRAN and dev versions of this package. | ||
|
||
* We saw 0 new problems | ||
* We failed to check 0 packages |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
checks | ||
library | ||
checks.noindex | ||
library.noindex | ||
data.sqlite | ||
*.html | ||
download | ||
lib | ||
cloud.noindex |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
if (Sys.getenv("DISPLAY") == "") stop("Run with xvfb-run") | ||
|
||
free <- system(paste0("df --output=avail ", tempdir(), " | tail -n 1"), intern = TRUE) | ||
if (as.numeric(free) < 1e8) stop("Set TMPDIR to a location with at least 100 GB free space") | ||
|
||
package <- basename(getwd()) | ||
|
||
library(revdepcheck) | ||
|
||
dir_setup(getwd()) | ||
if (!revdepcheck:::db_exists(getwd())) { | ||
revdepcheck:::db_setup(getwd()) | ||
} | ||
|
||
|
||
if (length(revdep_todo()) == 0) { | ||
import_revdeps <- revdepcheck:::cran_revdeps(package = package, dependencies = c("Depends", "Imports"), bioc = TRUE) | ||
import_revdeps <- setdiff(import_revdeps, package) | ||
todo_import_revdeps <- import_revdeps | ||
|
||
while (FALSE && length(todo_import_revdeps) > 0) { | ||
print(length(todo_import_revdeps)) | ||
print(todo_import_revdeps) | ||
print(Sys.time()) | ||
new_import_revdeps <- unlist(purrr::map(todo_import_revdeps, revdepcheck:::cran_revdeps, dependencies = c("Depends", "Imports"), bioc = TRUE)) | ||
todo_import_revdeps <- setdiff(new_import_revdeps, import_revdeps) | ||
import_revdeps <- union(import_revdeps, new_import_revdeps) | ||
print(new_import_revdeps) | ||
|
||
break # only one level for now | ||
} | ||
|
||
weak_revdeps <- revdepcheck:::cran_revdeps(package = package, dependencies = c("Suggests", "Enhances", "LinkingTo"), bioc = TRUE) | ||
print(weak_revdeps) | ||
|
||
revdep_add(".", c(import_revdeps, weak_revdeps)) | ||
} | ||
|
||
options(repos = revdepcheck:::get_repos(bioc = TRUE)) | ||
|
||
todo <- revdep_todo() | ||
withr::with_temp_libpaths(action = "replace", { | ||
crancache::install_packages(c( | ||
todo, | ||
"pillar" | ||
)) | ||
|
||
remotes::install_local(".") | ||
}) | ||
|
||
repos <- paste0( | ||
"file://", | ||
file.path(crancache::get_cache_dir(), c("cran-bin", "bioc-bin", "other-bin")) | ||
) | ||
|
||
names(repos) <- c("CRAN", "Bioc", "other") | ||
|
||
options(repos = repos) | ||
|
||
N <- 100 | ||
for (i in seq_len(N)) { | ||
try( | ||
revdepcheck::revdep_check( | ||
bioc = TRUE, | ||
dependencies = character(), | ||
quiet = FALSE, | ||
num_workers = 24, | ||
timeout = as.difftime(60, units = "mins") | ||
) | ||
) | ||
|
||
if (length(revdep_todo()) == 0) break | ||
} | ||
|
||
options(repos = revdepcheck:::get_repos(bioc = TRUE)) | ||
|
||
withr::with_output_sink( | ||
"revdep/cran.md", | ||
revdep_report_cran() | ||
) | ||
|
||
system("git add revdep/*.md") | ||
system("git commit -m 'update revdep results'") | ||
system("git push -u origin HEAD") |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
## revdepcheck results | ||
|
||
We checked 0 reverse dependencies, comparing R CMD check results across CRAN and dev versions of this package. | ||
|
||
* We saw 0 new problems | ||
* We failed to check 0 packages | ||
|
Binary file not shown.
Oops, something went wrong.