-
Notifications
You must be signed in to change notification settings - Fork 84
/
.gitlab-ci.yml
43 lines (38 loc) · 993 Bytes
/
.gitlab-ci.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
variables:
CMakeConfig: -G "Visual Studio 16 2019" -A x64
FF_USE_FASTZIP: "true"
ARTIFACT_COMPRESSION_LEVEL: "fast"
stages:
- build
build_dx12_debug:
tags:
- windows
- amd64
stage: build
script:
- 'cmake -S . -B build/DX12 -DGFX_API=DX12 %CMakeConfig%'
- 'cmake --build build/DX12 --config Debug --parallel 4 -- /p:CL_MPcount=16'
build_dx12_release:
tags:
- windows
- amd64
stage: build
script:
- 'cmake -S . -B build/DX12 -DGFX_API=DX12 %CMakeConfig%'
- 'cmake --build build/DX12 --config Release --parallel 4 -- /p:CL_MPcount=16'
build_vk_debug:
tags:
- windows
- amd64
stage: build
script:
- 'cmake -S . -B build/Vk -DGFX_API=VK %CMakeConfig%'
- 'cmake --build build/Vk --config Debug --parallel 4 -- /p:CL_MPcount=16'
build_vk_release:
tags:
- windows
- amd64
stage: build
script:
- 'cmake -S . -B build/Vk -DGFX_API=VK %CMakeConfig%'
- 'cmake --build build/Vk --config Release --parallel 4 -- /p:CL_MPcount=16'