-
Notifications
You must be signed in to change notification settings - Fork 523
Expand file tree
/
Copy pathappveyor.yml
More file actions
24 lines (18 loc) · 829 Bytes
/
appveyor.yml
File metadata and controls
24 lines (18 loc) · 829 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
version: 1.0.{build}
image:
- Visual Studio 2019
configuration: Release
platform: x64
before_build:
- cmd: >-
nuget restore src\WinMSRDriver\MSR.vcxproj
cmake --version
cmake -B build
build_script:
- cmake --build build --config Release --parallel
- msbuild src\WinMSRDriver\MSR.vcxproj /m /t:Build /p:Configuration=Release /p:Platform=x64
after_build:
- cmd: 7z a pcm-all.zip %APPVEYOR_BUILD_FOLDER%\build\bin\Release\*.exe %APPVEYOR_BUILD_FOLDER%\build\bin\Release\*.dll %APPVEYOR_BUILD_FOLDER%\build\src\Release\*.lib %APPVEYOR_BUILD_FOLDER%\build\src\Release\*.exp %APPVEYOR_BUILD_FOLDER%\src\windows\PCM-Service.exe.config %APPVEYOR_BUILD_FOLDER%\src\WinMSRDriver\x64\Release\MSR\msr.* %APPVEYOR_BUILD_FOLDER%\third-party-software.txt
artifacts:
- path: pcm-all.zip
name: pcm-all