Remove rscript install from Linux Travis CI, use Docker instead

This commit is contained in:
Glavin Wiechert 2017-06-11 23:26:37 -03:00
parent 13601a38b3
commit a36fc7d1e1
1 changed files with 6 additions and 2 deletions

View File

@ -80,6 +80,8 @@ cache:
- $HOME/.stack
before_install:
# Docker based beautifiers
- docker pull unibeautify/rscript
# Install Homebrew on Linux
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
git clone --depth=1 https://github.com/Linuxbrew/brew.git ~/.linuxbrew || true;
@ -106,8 +108,10 @@ before_install:
- brew install uncrustify
# R
- brew tap homebrew/science
- brew install r
- rscript --version
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
brew install r;
rscript --version;
fi
# PHP
- brew tap homebrew/homebrew-php
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then