Skip to content

Instantly share code, notes, and snippets.

@ojessen
Created January 29, 2014 16:23
Show Gist options
  • Save ojessen/8691544 to your computer and use it in GitHub Desktop.
Save ojessen/8691544 to your computer and use it in GitHub Desktop.
Shell script for building an R skript on Atlassian Bamboo
# Adjusted bash for building in Atlassian Bamboo
#
# See README.md for instructions, or for more configuration options,
# see the wiki:
# https://github.com/craigcitro/r-travis/wiki
curl -OL http://raw.github.com/craigcitro/r-travis/master/scripts/travis-tool.sh
chmod 755 ./travis-tool.sh
./travis-tool.sh bootstrap
./travis-tool.sh install_deps
./travis-tool.sh run_tests
./travis-tool.sh dump_logs_by_extension "out"
@ojessen
Copy link
Author

ojessen commented Jan 29, 2014

In short, this is an adaptation of the script from https://github.com/craigcitro/r-travis/wiki, which allows to build R packages on the CI Server Bamboo from Atlassian.

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