-
Notifications
You must be signed in to change notification settings - Fork 24
/
appveyor.yml
39 lines (39 loc) · 879 Bytes
/
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
version: 1.{build}
skip_tags: true
image: Visual Studio 2022
configuration: Release
platform:
- Win32
- Win64
install:
- cmd: premake5.bat
build:
project: build/d3d9-wrapper.sln
verbosity: minimal
for:
-
matrix:
only:
- platform: Win32
after_build:
- cmd: 7z a d3d9.zip %APPVEYOR_BUILD_FOLDER%\data\d3d9.dll %APPVEYOR_BUILD_FOLDER%\data\d3d9.ini
artifacts:
- path: d3d9.zip
name: d3d9
-
matrix:
only:
- platform: Win64
after_build:
- cmd: 7z a d3d9_x64.zip %APPVEYOR_BUILD_FOLDER%\data\x64\d3d9.dll %APPVEYOR_BUILD_FOLDER%\data\d3d9.ini
artifacts:
- path: d3d9_x64.zip
name: d3d9_x64
deploy:
- provider: GitHub
release: d3d9-wrapper v$(appveyor_build_version)
auth_token:
secure: ugbti+bXX/7zqu39OyiPxgRPd2pQn2FEV/12ABees2fHfpZob0tWXzqD/zSYmibJ
artifact: d3d9.zip,d3d9_x64.zip
matrix:
fast_finish: true