From 157a7af0985ffb7027d8a48de492398def8070bc Mon Sep 17 00:00:00 2001 From: Ralph Lange Date: Wed, 29 Apr 2020 16:58:12 +0200 Subject: [PATCH] appveyor: move init part of debugging settings to init section --- appveyor/.appveyor.yml.example-full | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/appveyor/.appveyor.yml.example-full b/appveyor/.appveyor.yml.example-full index 18fc911..318e30a 100644 --- a/appveyor/.appveyor.yml.example-full +++ b/appveyor/.appveyor.yml.example-full @@ -28,6 +28,8 @@ install: init: # Set autocrlf to make batch files work - git config --global core.autocrlf true + # print the connection info for RDP connections (see 'debugging' below) + #- ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1')) # Set clone depth (do not fetch complete history) clone_depth: 50 @@ -130,9 +132,8 @@ on_finish: ## note that you will need to connect within the usual build timeout limit (60 minutes) ## so you may want to adjust the build matrix above to just build the one of interest -# print the connection info -#init: -# - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1')) +# to print the RDP connection info +# uncomment the appropriate line in the init: section above # block a failed build (until the watchdog barks) #on_failure: