Skip to content

Instantly share code, notes, and snippets.

@ellisvalentiner
Created October 12, 2016 21:04
Show Gist options
  • Save ellisvalentiner/31ce17c6a827f370606f15b61239361d to your computer and use it in GitHub Desktop.
Save ellisvalentiner/31ce17c6a827f370606f15b61239361d to your computer and use it in GitHub Desktop.
yaml to build R package for bitbucket pipelines continuous integration
image: rocker/hadleyverse: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()'
@stevegbrooks
Copy link

The first line should be changed to image: rocker/tidyverse:latest

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment