File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed
Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change 11$ErrorActionPreference = " Stop" ;
2- # iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
2+
3+ # Accessing Windows build worker via Remote Desktop (RDP)
4+ # Set a password via Appveyor settings to enable, ensure passsword requirements are met
5+ # see docs: https://www.appveyor.com/docs/how-to/rdp-to-build-worker/
6+ if ($env: APPVEYOR_RDP_PASSWORD ) {
7+ $rdpScriptURL = ' https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'
8+ iex ((new-object net.webclient).DownloadString($rdpScriptURL ))
9+ }
10+
311$pythonVersion = (py -- version)
412echo $pythonVersion
513if ($env: APPVEYOR_REPO_TAG_NAME -and $env: APPVEYOR_REPO_TAG_NAME.StartsWith (" release-" )) {
You can’t perform that action at this time.
0 commit comments