Skip to content

Commit a0c0681

Browse files
agitterfmichonneau
authored andcommitted
Update R install in .travis.yml (#430)
* Update R install in .travis.yml See https://cran.r-project.org/bin/linux/ubuntu/README.html * update .travis.yml
1 parent e986d1a commit a0c0681

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

bin/boilerplate/.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# Travis CI is only used to check the lesson and is not involved in its deployment
12
dist: xenial # Ubuntu 16.04 (required for python 3.7)
23
language: python
34
python: 3.7
@@ -7,15 +8,15 @@ branches:
78
- /.*/
89
before_install:
910
- sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E084DAB9
10-
- echo "deb https://cran.rstudio.com/bin/linux/ubuntu trusty/" | sudo tee -a /etc/apt/sources.list
11+
- echo "deb https://cloud.r-project.org/bin/linux/ubuntu xenial-cran35/" | sudo tee -a /etc/apt/sources.list
1112
- sudo apt-get update -y
1213
- sudo apt-get install -y r-base
1314
- sudo Rscript -e "install.packages('knitr', repos = 'https://', dependencies = TRUE)"
1415
- sudo Rscript -e "install.packages('stringr', repos = 'https://cran.rstudio.com', dependencies = TRUE)"
1516
- sudo Rscript -e "install.packages('checkpoint', repos = 'https://cran.rstudio.com', dependencies = TRUE)"
1617
- sudo Rscript -e "install.packages('ggplot2', repos = 'https://cran.rstudio.com', dependencies = TRUE)"
1718
- rvm default
18-
- gem install json kramdown jekyll
19+
- gem install json kramdown jekyll bundler
1920
install:
2021
- pip install pyyaml
2122
script:

0 commit comments

Comments
 (0)