debug with rdp
This commit is contained in:
parent
b3512b431f
commit
9820579606
13
appveyor.yml
13
appveyor.yml
|
@ -9,6 +9,11 @@ branches:
|
||||||
stack: node 10
|
stack: node 10
|
||||||
|
|
||||||
init:
|
init:
|
||||||
|
- ps: |
|
||||||
|
if($isWindows -and $env:DEBUG_RDP -eq "true") {
|
||||||
|
iex ((new-object net.webclient).DownloadString(`
|
||||||
|
'https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
|
||||||
|
}
|
||||||
- sh: sudo apt-get update
|
- sh: sudo apt-get update
|
||||||
- sh: sudo apt-get -y install pkg-config libxss-dev libsecret-1-dev rpm
|
- sh: sudo apt-get -y install pkg-config libxss-dev libsecret-1-dev rpm
|
||||||
- ps: |
|
- ps: |
|
||||||
|
@ -82,6 +87,14 @@ after_build:
|
||||||
snapcraft logout
|
snapcraft logout
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
on_finish:
|
||||||
|
- ps: |
|
||||||
|
if($isWindows -and $env:DEBUG_RDP -eq "true") {
|
||||||
|
$blockRdp = $true
|
||||||
|
iex ((new-object net.webclient).DownloadString(`
|
||||||
|
'https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
|
||||||
|
}
|
||||||
|
|
||||||
for:
|
for:
|
||||||
-
|
-
|
||||||
matrix:
|
matrix:
|
||||||
|
|
Loading…
Reference in New Issue