forked from Baseflow/ExoPlayerXamarin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
43 lines (43 loc) · 1.24 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
-
branches:
only:
- master
- /release\/.*/
version: 1.0.{build}
image: Visual Studio 2017
install:
- appveyor-retry powershell .\install-android-sdk.ps1
before_build:
- cmd: dotnet --info
environment:
NUGET_SOURCE: https://www.nuget.org/api/v2/package
NUGET_APIKEY:
secure: Kse62H9lWHIwjsqpi2ih1efUnHc5R6VfIzu1Nfr/CXcJSKPkH8EGElCIxvP43/Oh
build_script:
- ps: .\build.ps1
test: off
cache:
- '%USERPROFILE%\.nuget\packages -> **\project.json' # project.json cache
on_failure:
- ps: Get-ChildItem *.binlog -recurse | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
-
branches:
only:
- develop
version: 1.0.{build}
image: Visual Studio 2017
install:
- appveyor-retry powershell .\install-android-sdk.ps1
before_build:
- cmd: dotnet --info
environment:
NUGET_SOURCE: https://www.myget.org/F/martijn00/api/v2/package
NUGET_APIKEY:
secure: 0PNC9eZWAinI1KkE9usbhPAwF1wudL5GJi6lJn9Ylb67M7SE17LIXBoMHuRKJaLE
build_script:
- ps: .\build.ps1
test: off
cache:
- '%USERPROFILE%\.nuget\packages -> **\project.json' # project.json cache
on_failure:
- ps: Get-ChildItem *.binlog -recurse | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }