-
Notifications
You must be signed in to change notification settings - Fork 0
262 lines (255 loc) · 10.9 KB
/
windows-direct3d12.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
name: Windows (Direct3D 12)
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Get Submodules
run: ./get_dlc
- name: Compile Shader
working-directory: Shader
run: ../Kinc/make windows -v vs2022 -g direct3d12 --option screenshot --debug --run
- name: Check Shader
working-directory: Shader
run: magick compare -metric mae .\reference.png .\Deployment\test.png difference.png
- name: Upload Shader failure image
if: failure()
uses: actions/upload-artifact@v4
with:
name: Shader image
path: Shader/Deployment/test.png
- name: Compile Texture
working-directory: Texture
run: ../Kinc/make windows -v vs2022 -g direct3d12 --option screenshot --debug --run
- name: Check Texture
working-directory: Texture
run: magick compare -metric mae .\reference.png .\Deployment\test.png difference.png
- name: Upload Texture failure image
if: failure()
uses: actions/upload-artifact@v4
with:
name: Texture image
path: Texture/Deployment/test.png
- name: Compile ComputeShader
working-directory: ComputeShader
run: ../Kinc/make windows -v vs2022 -g direct3d12 --option screenshot --debug --run
- name: Check ComputeShader
working-directory: ComputeShader
run: magick compare -metric mae .\reference.png .\Deployment\test.png difference.png
- name: Upload ComputeShader failure image
if: failure()
uses: actions/upload-artifact@v4
with:
name: ComputeShader image
path: ComputeShader/Deployment/test.png
- name: Compile TextureArray
working-directory: TextureArray
run: ../Kinc/make windows -v vs2022 -g direct3d12 --option screenshot --debug --run
- name: Check TextureArray
working-directory: TextureArray
run: magick compare -metric mae .\reference.png .\Deployment\test.png difference.png
- name: Upload TextureArray failure image
if: failure()
uses: actions/upload-artifact@v4
with:
name: TextureArray image
path: TextureArray/Deployment/test.png
- name: Compile 00_empty
working-directory: 00_empty
run: ../Kinc/make windows -v vs2022 -g direct3d12 --option screenshot --debug --run
- name: Check 00_empty
working-directory: 00_empty
run: magick compare -metric mae .\reference.png .\Deployment\test.png difference.png
- name: Upload 00_empty failure image
if: failure()
uses: actions/upload-artifact@v4
with:
name: 00_empty image
path: 00_empty/Deployment/test.png
- name: Compile 01_triangle
working-directory: 01_triangle
run: ../Kinc/make windows -v vs2022 -g direct3d12 --option screenshot --debug --run
- name: Check 01_triangle
working-directory: 01_triangle
run: magick compare -metric mae .\reference.png .\Deployment\test.png difference.png
- name: Upload 01_triangle failure image
if: failure()
uses: actions/upload-artifact@v4
with:
name: 01_triangle image
path: 01_triangle/Deployment/test.png
- name: Compile 02_matrix
working-directory: 02_matrix
run: ../Kinc/make windows -v vs2022 -g direct3d12 --option screenshot --debug --run
- name: Check 02_matrix
working-directory: 02_matrix
run: magick compare -metric mae .\reference.png .\Deployment\test.png difference.png
- name: Upload 02_matrix failure image
if: failure()
uses: actions/upload-artifact@v4
with:
name: 02_matrix image
path: 02_matrix/Deployment/test.png
- name: Compile 03_colored_cube
working-directory: 03_colored_cube
run: ../Kinc/make windows -v vs2022 -g direct3d12 --option screenshot --debug --run
- name: Check 03_colored_cube
working-directory: 03_colored_cube
run: magick compare -metric mae .\reference.png .\Deployment\test.png difference.png
- name: Upload 03_colored_cube failure image
if: failure()
uses: actions/upload-artifact@v4
with:
name: 03_colored_cube image
path: 03_colored_cube/Deployment/test.png
- name: Compile 04_textured_cube
working-directory: 04_textured_cube
run: ../Kinc/make windows -v vs2022 -g direct3d12 --option screenshot --debug --run
- name: Check 04_textured_cube
working-directory: 04_textured_cube
run: magick compare -metric mae .\reference.png .\Deployment\test.png difference.png
- name: Upload 04_textured_cube failure image
if: failure()
uses: actions/upload-artifact@v4
with:
name: 04_textured_cube image
path: 04_textured_cube/Deployment/test.png
- name: Compile 05_camera_controls
working-directory: 05_camera_controls
run: ../Kinc/make windows -v vs2022 -g direct3d12 --option screenshot --debug --run
- name: Check 05_camera_controls
working-directory: 05_camera_controls
run: magick compare -metric mae .\reference.png .\Deployment\test.png difference.png
- name: Upload 05_camera_controls failure image
if: failure()
uses: actions/upload-artifact@v4
with:
name: 05_camera_controls image
path: 05_camera_controls/Deployment/test.png
- name: Compile 06_render_targets
working-directory: 06_render_targets
run: ../Kinc/make windows -v vs2022 -g direct3d12 --option screenshot --debug --run
- name: Check 06_render_targets
working-directory: 06_render_targets
run: magick compare -metric mae .\reference.png .\Deployment\test.png difference.png
- name: Upload 06_render_targets failure image
if: failure()
uses: actions/upload-artifact@v4
with:
name: 06_render_targets image
path: 06_render_targets/Deployment/test.png
- name: Compile 07_multiple_render_targets
working-directory: 07_multiple_render_targets
run: ../Kinc/make windows -v vs2022 -g direct3d12 --option screenshot --debug --run
- name: Check 07_multiple_render_targets
working-directory: 07_multiple_render_targets
run: magick compare -metric mae .\reference.png .\Deployment\test.png difference.png
- name: Upload 07_multiple_render_targets failure image
if: failure()
uses: actions/upload-artifact@v4
with:
name: 07_multiple_render_targets image
path: 07_multiple_render_targets/Deployment/test.png
- name: Compile 08_float_render_targets
working-directory: 08_float_render_targets
run: ../Kinc/make windows -v vs2022 -g direct3d12 --option screenshot --debug --run
- name: Check 08_float_render_targets
working-directory: 08_float_render_targets
run: magick compare -metric mae .\reference.png .\Deployment\test.png difference.png
- name: Upload 08_float_render_targets failure image
if: failure()
uses: actions/upload-artifact@v4
with:
name: 08_float_render_targets image
path: 08_float_render_targets/Deployment/test.png
- name: Compile 09_depth_render_targets
working-directory: 09_depth_render_targets
run: ../Kinc/make windows -v vs2022 -g direct3d12 --option screenshot --debug --run
- name: Check 09_depth_render_targets
working-directory: 09_depth_render_targets
run: magick compare -metric mae .\reference.png .\Deployment\test.png difference.png
- name: Upload 09_depth_render_targets failure image
if: failure()
uses: actions/upload-artifact@v4
with:
name: 09_depth_render_targets image
path: 09_depth_render_targets/Deployment/test.png
- name: Compile 10_cubemap
working-directory: 10_cubemap
run: ../Kinc/make windows -v vs2022 -g direct3d12 --option screenshot --debug --run
- name: Check 10_cubemap
working-directory: 10_cubemap
run: magick compare -metric mae .\reference.png .\Deployment\test.png difference.png
- name: Upload 10_cubemap failure image
if: failure()
uses: actions/upload-artifact@v4
with:
name: 10_cubemap image
path: 10_cubemap/Deployment/test.png
- name: Compile 11_instanced_rendering
working-directory: 11_instanced_rendering
run: ../Kinc/make windows -v vs2022 -g direct3d12 --option screenshot --debug --run
- name: Check 11_instanced_rendering
working-directory: 11_instanced_rendering
run: magick compare -metric mae .\reference.png .\Deployment\test.png difference.png
- name: Upload 11_instanced_rendering failure image
if: failure()
uses: actions/upload-artifact@v4
with:
name: 11_instanced_rendering image
path: 11_instanced_rendering/Deployment/test.png
- name: Compile 12_set_render_target_depth
working-directory: 12_set_render_target_depth
run: ../Kinc/make windows -v vs2022 -g direct3d12 --option screenshot --debug --run
- name: Check 12_set_render_target_depth
working-directory: 12_set_render_target_depth
run: magick compare -metric mae .\reference.png .\Deployment\test.png difference.png
- name: Upload 12_set_render_target_depth failure image
if: failure()
uses: actions/upload-artifact@v4
with:
name: 12_set_render_target_depth image
path: 12_set_render_target_depth/Deployment/test.png
- name: Compile 13_generate_mipmaps
working-directory: 13_generate_mipmaps
run: ../Kinc/make windows -v vs2022 -g direct3d12 --option screenshot --debug --run
- name: Check 13_generate_mipmaps
working-directory: 13_generate_mipmaps
run: magick compare -metric mae .\reference.png .\Deployment\test.png difference.png
- name: Upload 13_generate_mipmaps failure image
if: failure()
uses: actions/upload-artifact@v4
with:
name: 13_generate_mipmaps image
path: 13_generate_mipmaps/Deployment/test.png
- name: Compile 14_set_mipmap
working-directory: 14_set_mipmap
run: ../Kinc/make windows -v vs2022 -g direct3d12 --option screenshot --debug --run
- name: Check 14_set_mipmap
working-directory: 14_set_mipmap
run: magick compare -metric mae .\reference.png .\Deployment\test.png difference.png
- name: Upload 14_set_mipmap failure image
if: failure()
uses: actions/upload-artifact@v4
with:
name: 14_set_mipmap image
path: 14_set_mipmap/Deployment/test.png
- name: Compile 15_deinterleaved_buffers
working-directory: 15_deinterleaved_buffers
run: ../Kinc/make windows -v vs2022 -g direct3d12 --option screenshot --debug --run
- name: Check 15_deinterleaved_buffers
working-directory: 15_deinterleaved_buffers
run: magick compare -metric mae .\reference.png .\Deployment\test.png difference.png
- name: Upload 15_deinterleaved_buffers failure image
if: failure()
uses: actions/upload-artifact@v4
with:
name: 15_deinterleaved_buffers image
path: 15_deinterleaved_buffers/Deployment/test.png