From 88bb4074d91b7ea159c10b6c39cffd92e10276b3 Mon Sep 17 00:00:00 2001 From: unknown <ldecicco@usgs.gov> Date: Wed, 10 Sep 2014 09:46:49 -0500 Subject: [PATCH] Added indentation. --- appveyor.yml | 50 ++++++++++++++++++++++++++++++-------------------- 1 file changed, 30 insertions(+), 20 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 62efd2cd..0fdfca72 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,26 +1,36 @@ init: -ps: | -$ErrorActionPreference = "Stop" -Invoke-WebRequest http://raw.github.com/krlmlr/r-appveyor/master/scripts/appveyor-tool.ps1 -OutFile "..\appveyor-tool.ps1" -Import-Module '..\appveyor-tool.ps1' + ps: | + $ErrorActionPreference = "Stop" + Invoke-WebRequest http://raw.github.com/krlmlr/r-appveyor/master/scripts/appveyor-tool.ps1 -OutFile "..\appveyor-tool.ps1" + Import-Module '..\appveyor-tool.ps1' + install: -ps: Bootstrap + ps: Bootstrap + build_script: -- travis-tool.sh install_deps + - travis-tool.sh install_deps + test_script: -- travis-tool.sh run_tests + - travis-tool.sh run_tests + on_failure: -- travis-tool.sh dump_logs + - travis-tool.sh dump_logs + artifacts: -- path: '*.Rcheck\**\*.log' -name: Logs -- path: '*.Rcheck\**\*.out' -name: Logs -- path: '*.Rcheck\**\*.fail' -name: Logs -- path: '*.Rcheck\**\*.Rout' -name: Logs -- path: '\*_*.tar.gz' -name: Bits -- path: '\*_*.zip' -name: Bits \ No newline at end of file + - path: '*.Rcheck\**\*.log' + name: Logs + + - path: '*.Rcheck\**\*.out' + name: Logs + + - path: '*.Rcheck\**\*.fail' + name: Logs + + - path: '*.Rcheck\**\*.Rout' + name: Logs + + - path: '\*_*.tar.gz' + name: Bits + + - path: '\*_*.zip' + name: Bits \ No newline at end of file -- GitLab