File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,8 @@ conda install -y --no-deps pandoc
3636cd .\R- package
3737Add-Content .Renviron " R_LIBS=$env: R_LIB_PATH "
3838Add-Content .Rprofile " options(repos = 'https://cran.rstudio.com')"
39+ Add-Content .Rprofile " options(pkgType = 'binary')"
40+ Add-Content .Rprofile " options(install.packages.check.source = 'no')"
3941Add-Content .Rprofile " Sys.setenv(RETICULATE_PYTHON = '$ ( [RegEx ]::Escape($env: CONDA_PREFIX )) /python.exe')"
4042
4143Rscript - e " if(!'devtools' %in% rownames(installed.packages())) { install.packages('devtools', dependencies = TRUE) }"
Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ mkdir -p $R_LIB_PATH
22cd $TRAVIS_BUILD_DIR /R-package
33echo " R_LIBS=$R_LIB_PATH " > .Renviron
44echo ' options(repos = "https://cran.rstudio.com")' > .Rprofile
5+ echo ' options(pkgType = "binary")' >> .Rprofile
6+ echo ' options(install.packages.check.source = "no")' >> .Rprofile
57
68export PATH=" $R_LIB_PATH /R/bin:$PATH "
79
@@ -12,7 +14,7 @@ if [[ $TRAVIS_OS_NAME == "linux" ]]; then
1214 sudo apt-get install texlive-latex-recommended texlive-fonts-recommended texlive-fonts-extra qpdf
1315
1416 if ! command -v R & > /dev/null; then
15- R_VER=3.6.1
17+ R_VER=3.6.2
1618 cd $TRAVIS_BUILD_DIR
1719 wget https://cran.r-project.org/src/base/R-3/R-$R_VER .tar.gz
1820 tar -xzf R-$R_VER .tar.gz
You can’t perform that action at this time.
0 commit comments