From d7231486c883003c43aa20a0b80e5c2de1152d17 Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Tue, 28 Nov 2017 10:33:58 -0500 Subject: ENH: add appveyor recipe to establish rdesktop login into the test box --- .appveyor.yml | 6 ++++++ 1 file changed, 6 insertions(+) (limited to '.appveyor.yml') diff --git a/.appveyor.yml b/.appveyor.yml index 69b7fe56..79df6423 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -91,3 +91,9 @@ test_script: on_success: - IF "%PYTHON_VERSION%" == "3.5" IF NOT "%IS_CYGWIN%" == "yes" (codecov) + +# Enable this to be able to login to the build worker. You can use the +# `remmina` program in Ubuntu, use the login information that the line below +# prints into the log. +on_finish: + - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1')) -- cgit v1.2.3 From dcfe2423fb93587685eb5f6af5e962bff7402dc5 Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Tue, 28 Nov 2017 10:49:37 -0500 Subject: ENH: also report where on sh, and echo msg when entering on_finish --- .appveyor.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to '.appveyor.yml') diff --git a/.appveyor.yml b/.appveyor.yml index 79df6423..8100951c 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -46,7 +46,7 @@ install: echo %PATH% uname -a git --version - where git git-daemon python pip pip3 pip34 + where git git-daemon python pip pip3 pip34 sh python --version python -c "import struct; print(struct.calcsize('P') * 8)" @@ -96,4 +96,6 @@ on_success: # `remmina` program in Ubuntu, use the login information that the line below # prints into the log. on_finish: + - | + echo "Running on_finish to establish connection back to the instance" - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1')) -- cgit v1.2.3 From 62536252a438e025c16eebd842d95d9391e651d4 Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Tue, 28 Nov 2017 11:52:17 -0500 Subject: Disable (but keep for future uses commented out) hook into appveyor session --- .appveyor.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to '.appveyor.yml') diff --git a/.appveyor.yml b/.appveyor.yml index 8100951c..5a96f878 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -95,7 +95,7 @@ on_success: # Enable this to be able to login to the build worker. You can use the # `remmina` program in Ubuntu, use the login information that the line below # prints into the log. -on_finish: - - | - echo "Running on_finish to establish connection back to the instance" - - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1')) +#on_finish: +# - | +# echo "Running on_finish to establish connection back to the instance" +# - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1')) -- cgit v1.2.3