Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Trouble installing R packages with devtools on Travis

Travis CI builds for the drake R package manual recently started failing:

Downloading GitHub repo ropensci/drake@master
Error: Could not find tools necessary to compile a package
In addition: Warning message:
In get0(oNam, envir = ns) : internal error -3 in R_decompress1
Execution halted
The command "Rscript -e 'deps <- devtools::dev_package_deps(dependencies = NA);devtools::install_deps(dependencies = TRUE);if (!all(deps$package %in% installed.packages())) { message("missing: ", paste(setdiff(deps$package, installed.packages()), collapse=", ")); q(status = 1, save = "no")}'" failed and exited with 1 during .

I tried using the development versions of devtools and pkgload, and the errors changed:

$ Rscript -e 'deps <- devtools::dev_package_deps(dependencies = NA);devtools::install_deps(dependencies = TRUE);if (!all(deps$package %in% installed.packages())) { message("missing: ", paste(setdiff(deps$package, installed.packages()), collapse=", ")); q(status = 1, save = "no")}'
Error in match.arg(upgrade, c("ask", "always", "never")) : 
  'arg' must be of length 1
Calls: <Anonymous> ... upgradable_packages -> resolve_upgrade -> match.arg
Execution halted
The command "Rscript -e 'deps <- devtools::dev_package_deps(dependencies = NA);devtools::install_deps(dependencies = TRUE);if (!all(deps$package %in% installed.packages())) { message("missing: ", paste(setdiff(deps$package, installed.packages()), collapse=", ")); q(status = 1, save = "no")}'" failed and exited with 1 during .

And when I also used the development version of remotes:

$ Rscript -e 'deps <- devtools::dev_package_deps(dependencies = NA);devtools::install_deps(dependencies = TRUE);if (!all(deps$package %in% installed.packages())) { message("missing: ", paste(setdiff(deps$package, installed.packages()), collapse=", ")); q(status = 1, save = "no")}'
drake     (ae093a068... -> 7f40fc6be...) [GitHub]
lazyeval  (0.2.1        -> 0.2.2       ) [CRAN]
polyclip  (1.9-1        -> 1.10-0      ) [CRAN]
purrr     (0.3.1        -> 0.3.2       ) [CRAN]
readxl    (1.3.0        -> 1.3.1       ) [CRAN]
rmarkdown (1.11         -> 1.12        ) [CRAN]
stringi   (1.3.1        -> 1.4.3       ) [CRAN]
tibble    (2.0.1        -> 2.1.1       ) [CRAN]
tinytex   (0.10         -> 0.11        ) [CRAN]
Installing 8 packages: lazyeval, polyclip, purrr, readxl, rmarkdown, stringi, tibble, tinytex
Error in if (type == "binary") { : argument is of length zero
Calls: <Anonymous> ... with_rprofile_user -> with_envvar -> force -> force -> i.p
Execution halted
The command "Rscript -e 'deps <- devtools::dev_package_deps(dependencies = NA);devtools::install_deps(dependencies = TRUE);if (!all(deps$package %in% installed.packages())) { message("missing: ", paste(setdiff(deps$package, installed.packages()), collapse=", ")); q(status = 1, save = "no")}'" failed and exited with 1 during .

I believe the builds should succeed, at least up to the point where the actual manual starts to run.

like image 553
landau Avatar asked Mar 17 '19 15:03

landau


1 Answers

remotes 2.0.3 (now on CRAN) fix this. Travis CI gets it from there.

See https://github.com/r-lib/devtools/issues/2020

Thanks to Jim Hester!

like image 175
nachti Avatar answered Oct 23 '22 18:10

nachti