Created
January 29, 2014 16:23
-
-
Save ojessen/8691544 to your computer and use it in GitHub Desktop.
Shell script for building an R skript on Atlassian Bamboo
This file contains hidden or 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
# 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" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.