-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathappveyor.yml
More file actions
21 lines (18 loc) · 837 Bytes
/
appveyor.yml
File metadata and controls
21 lines (18 loc) · 837 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
version: 0.0.1-ci-{branch}-{build}
image: Visual Studio 2019
configuration: Release
platform:
- x64
- Win32
shallow_clone: true
build:
parallel: true
verbosity: normal
after_build:
- cmd: >-
7z a -t7z -mx -ms=on %APPVEYOR_PROJECT_NAME%_trunk_%PLATFORM%.7z .\%PLATFORM%\*.exe .\%PLATFORM%\*.dll .\README.md
7z a -tzip -mx -mm=deflate -mpass=15 %APPVEYOR_PROJECT_NAME%_trunk_%PLATFORM%.zip .\%PLATFORM%\*.exe .\%PLATFORM%\*.dll .\README.md
7z a -p%APPVEYOR_PROJECT_NAME% -mhe=on -t7z -mx -ms=on %APPVEYOR_PROJECT_NAME%_trunk_password_%PLATFORM%.7z .\%PLATFORM%\*.exe .\%PLATFORM%\*.dll .\README.md
7z a -p%APPVEYOR_PROJECT_NAME% -tzip -mx -mm=deflate -mpass=15 %APPVEYOR_PROJECT_NAME%_trunk_password_%PLATFORM%.zip .\%PLATFORM%\*.exe .\%PLATFORM%\*.dll .\README.md
artifacts:
- path: $(APPVEYOR_PROJECT_NAME)_trunk_*