forked from megaboich/js-map-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
78 lines (62 loc) · 2.97 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
version: 4.2.{build}
image: Visual Studio 2017
environment:
matrix:
- PlatformToolset: VS15
- PlatformToolset: VS17
platform:
- Any CPU
- x64
configuration:
- Release
#- Debug
install:
- if "%platform%"=="x64" set archi=amd64
- if "%platform%"=="x64" set platform_input=x64
- if "%platform%"=="Any CPU" set archi=x86
- if "%platform%"=="Any CPU" set platform_input=Any CPU
- if "%PlatformToolset%"=="VS15" call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" %archi%
- if "%PlatformToolset%"=="VS17" call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat" %archi%
- cd "%APPVEYOR_BUILD_FOLDER%\source"
- nuget restore "%APPVEYOR_BUILD_FOLDER%"\source\JsParser.VsExtension\packages.config -PackagesDirectory "%APPVEYOR_BUILD_FOLDER%"\source\packages
- nuget restore "%APPVEYOR_BUILD_FOLDER%"\source\JsParser.UI\packages.config -PackagesDirectory "%APPVEYOR_BUILD_FOLDER%"\source\packages
- nuget restore "%APPVEYOR_BUILD_FOLDER%"\source\JsParser.Test\packages.config -PackagesDirectory "%APPVEYOR_BUILD_FOLDER%"\source\packages
- nuget restore "%APPVEYOR_BUILD_FOLDER%"\source\JsParser.NppPlugin\packages.config -PackagesDirectory "%APPVEYOR_BUILD_FOLDER%"\source\packages
build_script:
- cd "%APPVEYOR_BUILD_FOLDER%\source"
- msbuild JSparser.sln /m /p:configuration="%configuration%" /p:platform="%platform_input%" /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
after_build:
- cd "%APPVEYOR_BUILD_FOLDER%\source\JsParser.NppPlugin"
- ps: >-
if ($env:PLATFORM_INPUT -eq "x64") {
Push-AppveyorArtifact "build\JsMapParser.NppPlugin.dll" -FileName JsMapParser.NppPlugin.dll
}
if ($env:PLATFORM_INPUT -eq "Any CPU" ) {
Push-AppveyorArtifact "build\JsMapParser.NppPlugin.dll" -FileName JsMapParser.NppPlugin.dll
Push-AppveyorArtifact "..\JsParser.VsExtension\bin\$env:CONFIGURATION\JsMapParser.VsExtension.vsix" -FileName JsMapParser.VsExtension.vsix
}
if ($($env:APPVEYOR_REPO_TAG) -eq "true" -and $env:CONFIGURATION -eq "Release") {
if($env:PLATFORM_INPUT -eq "x64"){
$ZipFileName = "JsMapParser_NppPlugin_$($env:APPVEYOR_REPO_TAG_NAME)_x64.zip"
7z a $ZipFileName build\JsMapParser.NppPlugin.dll
}
if($env:PLATFORM_INPUT -eq "Any CPU"){
$ZipFileName = "JsMapParser_NppPlugin_$($env:APPVEYOR_REPO_TAG_NAME)_x86.zip"
7z a $ZipFileName build\JsMapParser.NppPlugin.dll
}
}
artifacts:
- path: JsMapParser_NppPlugin_*.zip
name: releases
deploy:
provider: GitHub
auth_token:
secure: !!TODO, see https://www.appveyor.com/docs/deployment/github/#provider-settings!!
artifact: releases
draft: false
prerelease: false
force_update: true
on:
appveyor_repo_tag: true
PlatformToolset: VS17
configuration: Release