forked from oxyplot/oxyplot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
82 lines (81 loc) · 3.63 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
- # master branch only
branches:
only:
- master
version: 2014.1.{build}
environment:
nuget_api_key:
secure: kM3Kse+ivuuE5RVoe6dPdw+aguWx56K2YeXujGa9tMPQTms3lv7QxNpTLFMALYNa
ftp_user:
secure: Q/t4tRGEtslJG0q4i9QeMw==
ftp_password:
secure: 8Zwx5dScSahnbraTsKTP3g==
install:
- cinst stylecop
- cinst LynxToolkit
- cinst gtksharp
platform: Any CPU
configuration: Release
before_build:
cmd: UpdateVersionNumbers /Version=%APPVEYOR_BUILD_VERSION% /Dependency=OxyPlot.Core /Directory=Source
build:
project: Source/OxyPlot.AppVeyor.sln
verbosity: minimal
artifacts:
- path: Output
name: OxyPlot-$(APPVEYOR_BUILD_VERSION)
type: zip
deploy_script:
- cmd: mkdir Packages
- cmd: NuGet pack Source\OxyPlot\OxyPlot.Core.nuspec -OutputDirectory Packages
- cmd: NuGet pack Source\OxyPlot.Wpf\OxyPlot.Wpf.nuspec -OutputDirectory Packages
- cmd: NuGet pack Source\OxyPlot.WindowsForms\OxyPlot.WindowsForms.nuspec -OutputDirectory Packages
- cmd: NuGet pack Source\OxyPlot.Metro\OxyPlot.Metro.nuspec -OutputDirectory Packages
- cmd: NuGet pack Source\OxyPlot.WP8\OxyPlot.WP8.nuspec -OutputDirectory Packages
- cmd: NuGet pack Source\OxyPlot.Silverlight\OxyPlot.Silverlight.nuspec -OutputDirectory Packages
- cmd: NuGet pack Source\OxyPlot.OpenXml\OxyPlot.OpenXml.nuspec -OutputDirectory Packages
- cmd: NuGet pack Source\OxyPlot.Pdf\OxyPlot.Pdf.nuspec -OutputDirectory Packages
- cmd: NuGet pack Source\OxyPlot.GtkSharp\OxyPlot.GtkSharp.nuspec -OutputDirectory Packages
- cmd: for %%G in (Packages\*.nupkg) do NuGet push %%G %nuget_api_key%
- cmd: FtpUpload ftp.oxyplot.org %ftp_user% %ftp_password% Output\SL5\Examples\Silverlight\ExampleBrowser\ExampleBrowser.xap /ExampleBrowser/ExampleBrowser.xap
- # develop branch only
branches:
only:
- develop
version: 2014.1.{build}-alpha
environment:
version: 2014.1.%APPVEYOR_BUILD_NUMBER%
nuget_api_key:
secure: kM3Kse+ivuuE5RVoe6dPdw+aguWx56K2YeXujGa9tMPQTms3lv7QxNpTLFMALYNa
ftp_user:
secure: Q/t4tRGEtslJG0q4i9QeMw==
ftp_password:
secure: 8Zwx5dScSahnbraTsKTP3g==
install:
- cinst stylecop
- cinst LynxToolkit
- cinst gtksharp
platform: Any CPU
configuration: Release
before_build:
cmd: UpdateVersionNumbers /Version=%version% /PreRelease=alpha /Dependency=OxyPlot.Core /Directory=Source
build:
project: Source/OxyPlot.AppVeyor.sln
verbosity: normal
artifacts:
- path: Output
name: OxyPlot-$(APPVEYOR_BUILD_VERSION)
type: zip
deploy_script:
- cmd: mkdir Packages
- cmd: NuGet pack Source\OxyPlot\OxyPlot.Core.nuspec -OutputDirectory Packages
- cmd: NuGet pack Source\OxyPlot.Wpf\OxyPlot.Wpf.nuspec -OutputDirectory Packages
- cmd: NuGet pack Source\OxyPlot.WindowsForms\OxyPlot.WindowsForms.nuspec -OutputDirectory Packages
- cmd: NuGet pack Source\OxyPlot.Metro\OxyPlot.Metro.nuspec -OutputDirectory Packages
- cmd: NuGet pack Source\OxyPlot.WP8\OxyPlot.WP8.nuspec -OutputDirectory Packages
- cmd: NuGet pack Source\OxyPlot.Silverlight\OxyPlot.Silverlight.nuspec -OutputDirectory Packages
- cmd: NuGet pack Source\OxyPlot.OpenXml\OxyPlot.OpenXml.nuspec -OutputDirectory Packages
- cmd: NuGet pack Source\OxyPlot.Pdf\OxyPlot.Pdf.nuspec -OutputDirectory Packages
- cmd: NuGet pack Source\OxyPlot.GtkSharp\OxyPlot.GtkSharp.nuspec -OutputDirectory Packages
- cmd: for %%G in (Packages\*.nupkg) do NuGet push %%G %nuget_api_key%
- cmd: FtpUpload ftp.oxyplot.org %ftp_user% %ftp_password% Output\SL5\Examples\Silverlight\ExampleBrowser\ExampleBrowser.xap /ExampleBrowser/ExampleBrowser.xap