Remove rscript install from Linux Travis CI, use Docker instead
This commit is contained in:
parent
13601a38b3
commit
a36fc7d1e1
|
@ -80,6 +80,8 @@ cache:
|
||||||
- $HOME/.stack
|
- $HOME/.stack
|
||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
|
# Docker based beautifiers
|
||||||
|
- docker pull unibeautify/rscript
|
||||||
# Install Homebrew on Linux
|
# Install Homebrew on Linux
|
||||||
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
|
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
|
||||||
git clone --depth=1 https://github.com/Linuxbrew/brew.git ~/.linuxbrew || true;
|
git clone --depth=1 https://github.com/Linuxbrew/brew.git ~/.linuxbrew || true;
|
||||||
|
@ -106,8 +108,10 @@ before_install:
|
||||||
- brew install uncrustify
|
- brew install uncrustify
|
||||||
# R
|
# R
|
||||||
- brew tap homebrew/science
|
- brew tap homebrew/science
|
||||||
- brew install r
|
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
||||||
- rscript --version
|
brew install r;
|
||||||
|
rscript --version;
|
||||||
|
fi
|
||||||
# PHP
|
# PHP
|
||||||
- brew tap homebrew/homebrew-php
|
- brew tap homebrew/homebrew-php
|
||||||
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
||||||
|
|
Loading…
Reference in New Issue