forked from MvvmCross/MvvmCross
-
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: odCUzBq+YWTrwvRhhuQZP1uldezh8PJRn79miIgZnZrDbruYkP9aoJAlTcat5AGh
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/mvvmcross/api/v2/package
NUGET_APIKEY:
secure: m3uewWCh6Y5jqTZIfwMDfs8GWdbwTZjfiEl13AWY7T3u3bPspGA/lgwe8jdxjBm9
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 }