-
-
Notifications
You must be signed in to change notification settings - Fork 92
/
appveyor.yml
63 lines (54 loc) · 1.62 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# version format
version: 6.4.{build}
environment:
#GIT_TRACE: 1
access_token:
secure: bDZ9LJ84SWlGw/D3R/q3ADwDslfrLNZLMdH3ZRjdi5xwkGanmjf7DvgN+crc4BU/
psgallery_key:
secure: FuPgJskczZMptxRgdUlBAy7OYmXBQl4zq86kXXSmBt6wKudnM2PK7W6cM7bj0te1
coveralls_key:
secure: cWv4+OPfqRLSt7I4f+p3lEixKoYZzi42IDc7C4Kf+2WZW/dO+H+RBCM7m0Si2uuP
github_email:
secure: x5ljenzXfYXkzpEu9eX7AQvb3AkFbiXG2NndMzw9Zc4=
CODECOV_TOKEN:
secure: bLnfnH8+QlpeQgvoOrgrCLkOrgpOBMwfnjwtdVphoUE0YEeEdzP9/7dILfzpFGFg
#sig_key:
#secure: LPEv2aGCLb1WPw89OFF8gmhk5tVZtOAPaUJ9cAATBnD1+qREYmvh/fH53NbJSNP
#PfxSecure:
#secure: Kkp5iutKCw8ACijkd5Et8xUjF4e39dJRuoaTWIHem5tVaF5QeqUnrPSjkPsNDwro
skip_tags: true
skip_commits:
files:
- docs\*
- .github\*
- .vscode\*
- README.md
- LICENSE.md
- CONTRIBUTING.md
- CODE_OF_CONDUCT.md
- ISSUE_TEMPLATE.md
- PULL_REQUEST_TEMPLATE.md
- appveyor.yml
- CHANGELOG.md
message: /update readme.*|update version.*|update appveyor.*/
only_commits:
files:
- build\
- psPAS\
- tests\
image: Visual Studio 2019
install:
#- ps: . .\build\install.ps1
- pwsh.exe -File .\build\install.ps1
build_script:
#- ps: . .\build\build.ps1
- pwsh.exe -File .\build\build.ps1
test_script:
#- ps: . .\build\test.ps1
- pwsh.exe -File .\build\test.ps1
deploy_script:
#- ps: . .\build\deploy-github.ps1
- pwsh.exe -File .\build\deploy-github.ps1
- pwsh.exe -File .\build\deploy-psgallery.ps1
#on_failure:
#- ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))