|
9 | 9 |
|
10 | 10 | install:
|
11 | 11 | - ps: Bootstrap
|
12 |
| - - cmd: R -q -e "writeLines('options(repos = \'https://cloud.r-project.org\')', '~/.Rprofile')" |
13 |
| - - cmd: R -q -e "getOption('repos')" |
14 |
| - - cmd: R -q -e "install.packages('remotes'); remotes::install_github('ropenscilabs/tic'); tic::prepare_all_stages()" |
| 12 | + - cmd: Rscript -e "writeLines('options(repos = \'https://cloud.r-project.org\')', '~/.Rprofile')" |
| 13 | + - cmd: Rscript -e "getOption('repos')" |
| 14 | + - cmd: Rscript -e "install.packages('remotes'); remotes::install_github('ropenscilabs/tic'); tic::prepare_all_stages()" |
15 | 15 |
|
16 | 16 | cache:
|
17 | 17 | - C:\RLibrary
|
18 | 18 |
|
19 |
| -before_build: R -q -e "tic::before_install()" |
20 |
| -build_script: R -q -e "tic::install()" |
21 |
| -after_build: R -q -e "tic::after_install()" |
22 |
| -before_test: R -q -e "tic::before_script()" |
23 |
| -test_script: R -q -e "tic::script()" |
24 |
| -on_success: R -q -e "try(tic::after_success(), silent = TRUE)" |
25 |
| -on_failure: R -q -e "tic::after_failure()" |
26 |
| -before_deploy: R -q -e "tic::before_deploy()" |
27 |
| -deploy_script: R -q -e "tic::deploy()" |
28 |
| -after_deploy: R -q -e "tic::after_deploy()" |
29 |
| -on_finish: R -q -e "tic::after_script()" |
| 19 | +before_build: Rscript -e "tic::before_install()" |
| 20 | +build_script: Rscript -e "tic::install()" |
| 21 | +after_build: Rscript -e "tic::after_install()" |
| 22 | +before_test: Rscript -e "tic::before_script()" |
| 23 | +test_script: Rscript -e "tic::script()" |
| 24 | +on_success: Rscript -e "try(tic::after_success(), silent = TRUE)" |
| 25 | +on_failure: Rscript -e "tic::after_failure()" |
| 26 | +before_deploy: Rscript -e "tic::before_deploy()" |
| 27 | +deploy_script: Rscript -e "tic::deploy()" |
| 28 | +after_deploy: Rscript -e "tic::after_deploy()" |
| 29 | +on_finish: Rscript -e "tic::after_script()" |
30 | 30 |
|
31 | 31 | # Adapt as necessary starting from here
|
32 | 32 |
|
|
0 commit comments