-
Notifications
You must be signed in to change notification settings - Fork 1
/
appveyor.yml
47 lines (39 loc) · 1.21 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
version: 1.2.0.{build}
image: Visual Studio 2022
environment:
matrix:
- PlatformToolset: v143
platform:
- x86
- x64
- arm64
configuration:
- Release
- Debug
install:
- if "%platform%"=="x86" set platform_input=x86
- if "%platform%"=="x64" set platform_input=x64
- if "%platform%"=="arm64" set platform_input=arm64
build:
parallel: true # enable MSBuild parallel builds
verbosity: minimal
build_script:
- cd "%APPVEYOR_BUILD_FOLDER%"
- cd src
- git submodule update --init --recursive
- msbuild nppURLPlugin.sln /m /p:configuration="%configuration%" /p:platform="%platform_input%" /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
- cd ..
- echo %CD%
artifacts:
- path: src\Build\Bin\Debug\Win32\urlPlugin.dll
name: Debug-x86
- path: \src\Build\Bin\Release\Win32\urlPlugin.dll
name: Release-x86
- path: src\Build\Bin\Debug\x64\urlPlugin.dll
name: Debug-x64
- path: src\Build\Bin\Release\x64\urlPlugin.dll
name: Release-x64
- path: src\Build\Bin\Debug\ARM64\urlPlugin.dll
name: Debug-ARM64
- path: \src\Build\Bin\Release\ARM64\urlPlugin.dll
name: Release-ARM64