2016-07-02 06:32:41 +00:00
|
|
|
# for CI with appveyor.yml
|
2016-07-02 07:10:38 +00:00
|
|
|
# Ref: http://www.yegor256.com/2015/01/10/windows-appveyor-maven.html
|
2016-07-31 14:37:06 +00:00
|
|
|
version: '{branch}-{build}'
|
2016-07-02 06:32:41 +00:00
|
|
|
os: Windows Server 2012
|
2016-07-31 14:37:06 +00:00
|
|
|
hosts:
|
|
|
|
petstore.swagger.io: 127.0.0.1
|
2016-07-02 06:32:41 +00:00
|
|
|
install:
|
|
|
|
- ps: |
|
|
|
|
Add-Type -AssemblyName System.IO.Compression.FileSystem
|
|
|
|
if (!(Test-Path -Path "C:\maven" )) {
|
|
|
|
(new-object System.Net.WebClient).DownloadFile(
|
|
|
|
'http://www.us.apache.org/dist/maven/maven-3/3.2.5/binaries/apache-maven-3.2.5-bin.zip',
|
|
|
|
'C:\maven-bin.zip'
|
|
|
|
)
|
|
|
|
[System.IO.Compression.ZipFile]::ExtractToDirectory("C:\maven-bin.zip", "C:\maven")
|
|
|
|
}
|
|
|
|
- cmd: SET PATH=C:\maven\apache-maven-3.2.5\bin;%JAVA_HOME%\bin;%PATH%
|
|
|
|
- cmd: SET MAVEN_OPTS=-XX:MaxPermSize=2g -Xmx4g
|
|
|
|
- cmd: SET JAVA_OPTS=-XX:MaxPermSize=2g -Xmx4g
|
2016-09-11 06:52:46 +00:00
|
|
|
- cmd: SET M2_HOME=C:\maven\apache-maven-3.2.5
|
2016-12-12 09:13:20 +00:00
|
|
|
- cmd: dir/w
|
|
|
|
# - cmd: RMDIR "C:\projects\swagger-codegen\swagger-samples" /S /Q
|
2016-07-31 14:37:06 +00:00
|
|
|
- git clone https://github.com/wing328/swagger-samples
|
2017-05-30 08:11:01 +00:00
|
|
|
- ps: Start-Process -FilePath 'C:\maven\apache-maven-3.2.5\bin\mvn' -ArgumentList 'jetty:run' -WorkingDirectory "$env:appveyor_build_folder\swagger-samples\java\java-jersey-jaxrs-ci"
|
2016-07-02 06:32:41 +00:00
|
|
|
build_script:
|
2016-09-14 10:43:13 +00:00
|
|
|
# build C# API client
|
2016-07-31 14:37:06 +00:00
|
|
|
- nuget restore samples\client\petstore\csharp\SwaggerClient\IO.Swagger.sln
|
|
|
|
- msbuild samples\client\petstore\csharp\SwaggerClient\IO.Swagger.sln /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
|
2016-09-14 10:43:13 +00:00
|
|
|
# build C# API client (with PropertyChanged)
|
|
|
|
- nuget restore samples\client\petstore\csharp\SwaggerClientWithPropertyChanged\IO.Swagger.sln
|
|
|
|
- msbuild samples\client\petstore\csharp\SwaggerClientWithPropertyChanged\IO.Swagger.sln /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
|
2017-03-29 10:43:30 +00:00
|
|
|
# build C# .net standard 1.3+ API client
|
2017-04-23 07:42:42 +00:00
|
|
|
- nuget restore samples\client\petstore\csharp\SwaggerClientNetStandard\IO.Swagger.sln
|
|
|
|
- msbuild samples\client\petstore\csharp\SwaggerClientNetStandard\IO.Swagger.sln /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
|
2016-09-14 10:43:13 +00:00
|
|
|
# install swagger codegen locally
|
2016-07-02 06:32:41 +00:00
|
|
|
- mvn clean install --batch-mode
|
2016-07-11 05:54:18 +00:00
|
|
|
test_script:
|
2016-07-31 14:37:06 +00:00
|
|
|
# test c# API client
|
|
|
|
- nunit-console samples\client\petstore\csharp\SwaggerClient\src\IO.Swagger.Test\bin\Debug\IO.Swagger.Test.dll --result=myresults.xml;format=AppVeyor
|
2016-09-14 10:43:13 +00:00
|
|
|
# test c# API client (with PropertyChanged)
|
|
|
|
- nunit-console samples\client\petstore\csharp\SwaggerClientWithPropertyChanged\src\IO.Swagger.Test\bin\Debug\IO.Swagger.Test.dll --result=myresults.xml;format=AppVeyor
|
|
|
|
|
2016-07-31 14:37:06 +00:00
|
|
|
# generate all petstore clients
|
2016-07-11 05:54:18 +00:00
|
|
|
- .\bin\windows\run-all-petstore.cmd
|
2016-12-12 09:13:20 +00:00
|
|
|
#cache:
|
2016-11-25 15:26:56 +00:00
|
|
|
# - C:\maven\
|
|
|
|
# - C:\Users\appveyor\.m2
|