forked from ThomasLebrun/XForms-Toolkit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
appveyor.yml
29 lines (28 loc) · 1.02 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
version: 2.2.{build}
pull_requests:
do_not_increment_build_number: true
os: Visual Studio 2015
configuration: Release
environment:
xamarin_email:
secure: 9m3w9MDhygHBFKSw3mYDIN9y7vlNtH/BrBBbN66ddTA=
xamarin_password:
secure: YDHLmeqVaqqScAweIFFGRQ==
install:
- choco install doxygen.portable
before_build:
- ps: >-
nuget restore .\src\XLabs.Framework.sln
Import-PfxCertificate -FilePath .\Samples\XLabs.Samples.pfx -CertStoreLocation Cert:\CurrentUser\My
- appveyor RegisterXamarinLicense -Email %xamarin_email% -Password %xamarin_password% -Product iOS
- appveyor RegisterXamarinLicense -Email %xamarin_email% -Password %xamarin_password% -Product Android
build:
project: .\src\XLabs.Framework.sln
verbosity: quiet
after_build:
- appveyor UnregisterXamarinLicense -Email %xamarin_email% -Password %xamarin_password%
test: off
on_success:
- doxygen.exe "C:\projects\xamarin-forms-labs\Doxyfile"
on_failure:
- appveyor UnregisterXamarinLicense -Email %xamarin_email% -Password %xamarin_password%