forked from jcwalker/WiFiProfileManagement
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
23 lines (17 loc) · 723 Bytes
/
appveyor.yml
File metadata and controls
23 lines (17 loc) · 723 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
version: 1.0.{build}
image: WMF 5
environment:
NugetApiKey:
secure: ledbDE6pSWvJOaTv2cxN8WNv8WJl2gz+d/fcUQuc+5XiVS4iBQyPdweURgEHIpPg
install:
- ps: >-
Write-Host 'Installing NuGet PackageProvide'
$pkg = Install-PackageProvider -Name NuGet -Force -ErrorAction Stop
Write-Host "Installed NuGet version '$($pkg.version)'"
Install-Module InvokeBuild -Force
Install-Module Pester -Force
Install-Module BuildHelpers -Force
build_script:
- ps: >-
Invoke-Build -File .\WiFiProfileManagement.build.ps1
(New-Object 'System.Net.WebClient').UploadFile("https://ci.appveyor.com/api/testresults/nunit/$($env:APPVEYOR_JOB_ID)", (Resolve-Path .\Release\testResults*.xml))