-
Notifications
You must be signed in to change notification settings - Fork 8
/
.appveyor.yml
37 lines (24 loc) · 941 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
36
37
image: WMF 5
version: 0.3.{build}
# Skip on updates to the readme.
# We can force this by adding [skip ci] or [ci skip] anywhere in commit message
skip_commits:
message: /update(?:|d|s) readme\..*/
environment:
PSGalleryApiKey:
secure: 19uAs7mfu9YRkwTvHIymJuSyXGjUUXCR+jsaRvo3ST44NmgZG2HZkOjuabTe/Cyu
CODECOV_TOKEN:
secure: 2zRKXm7Sw+GlVonpMOerfEBjeYc05cJinePPX8nJl7c7j1PzNAbrNHAbi7y1RALU
install:
# Bootstrap PSDepend and Install Dependencies
- ps: |
Install-PackageProvider -Name NuGet -MinimumVersion '2.8.5.201' -Force
Install-Module -Name PSDepend -Force; Import-Module -Name PSDepend
Invoke-PSDepend '.\REQUIREMENTS.psd1' -Force
build_script:
- ps: Invoke-psake '.\.scripts\build.ps1'
on_success:
# If build was started by pushed tag; deploy it.
- ps: |
Write-Host "[AppVeyor] On Success; deploying ..." -Foregroundcolor Green
Invoke-PSDeploy -Path '.\.scripts\deploy.ps1' -Force