-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathappveyor.yml
35 lines (26 loc) · 874 Bytes
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# See http://www.appveyor.com/docs/appveyor-yml for many more options
# Skip on updates to the readme.
# We can force this by adding [skip ci] or [ci skip] anywhere in commit message
skip_commits:
message: /updated readme.*/
os: "WMF 5"
install:
- ps: Write-Output (Get-ChildItem env:APPVEYOR*)
environment:
PSGalleryKey:
secure: +WIaoztv7E/2is7QVRnd2i1HAawDHXzJWo8Izni42C/XYDN6b7Y8MPgnBr8wvy4f
build: false
version: '1.0.{build}'
before_test:
- ps: .\build.ps1
test_script:
# Test with native PS version
# - ps: . .\Tests\appveyor.pester.ps1 -Test
# Finalize pass - collect and upload results
- ps: . .\Tests\appveyor.pester.ps1 -Finalize
branches:
# whitelist
only:
- master
#on_finish:
#- ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))