Skip to content

Commit 73de296

Browse files
committed
Merge branch 'b-#272-appveyor', closes #272
- Fix AppVeyor builds.
2 parents d665ee8 + 28dba26 commit 73de296

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

appveyor.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -9,24 +9,24 @@ init:
99
1010
install:
1111
- 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()"
1515

1616
cache:
1717
- C:\RLibrary
1818

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()"
3030

3131
# Adapt as necessary starting from here
3232

0 commit comments

Comments
 (0)