-
Notifications
You must be signed in to change notification settings - Fork 4
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
Reduce build time of package #7
Comments
Current build configuration{
"r": [
"oldrel",
"release",
"devel"
],
"os": "linux",
"dist": "trusty",
"sudo": false,
"cache": "packages",
"group": "stable",
".result": "configured",
"language": "r",
"r_packages": [
"tidyverse",
"vegan"
],
"after_success": [
"R CMD INSTALL $PKG_TARBALL",
"Rscript -e 'lintr::lint_package()'"
],
"bioc_packages": [
"BiocInstaller"
],
"r_github_packages": [
"joey711/phyloseq",
"grunwaldlab/metacoder",
"ropensci/taxa",
"MadsAlbertsen/ampvis2"
],
"warnings_are_errors": false
} |
Currently, the build is breaking...I'll look into fixing that today, @grabear 7.25s$ 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: Missing commas separating Remotes: 'github::joey711/phyloseq
ggthemes'
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 . |
A great article: http://jtleek.com/protocols/travis_bioc_devel/ |
@grabear Anything against bumping R to version 3.5.0? Installing package into ‘/home/travis/R/Library’
(as ‘lib’ is unspecified)
ERROR: this R is version 3.4.4, package 'microbiome' requires R >= 3.5.0 |
The build is passing for R 3.5.1 and the development release of R. Just not the old release (which we can remove from |
3.5 is fine |
Per this PR I'm going to change the R version to >= 3.3.0 |
We need to add |
The travis-ci build job failed.
Could be due to:
The text was updated successfully, but these errors were encountered: