Forked from ellisvalentiner/bitbucket-pipelines.yml
Last active
January 25, 2023 18:48
-
-
Save smach/2c390e84a1768ebf47ee34eea687f389 to your computer and use it in GitHub Desktop.
yaml to build R package for bitbucket pipelines continuous integration
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
image: rocker/tidyverse:latest | |
pipelines: | |
default: | |
- step: | |
script: | |
- cd /opt/atlassian/pipelines/agent/build | |
- Rscript -e 'devtools::install_deps(".", dependencies=TRUE, upgrade=FALSE)' | |
- Rscript -e 'devtools::build()' | |
- Rscript -e 'devtools::install(upgrade_dependencies = FALSE)' | |
- Rscript -e 'devtools::check()' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Useful comment on the original from aboland-edge]:
I'm sure you found a solution long since this post, but it was one of the top hits when I googled this problem.
My library was in a sub directory in the repository, this was the problem. The solution was to set the directory to where the R library was.