-
Notifications
You must be signed in to change notification settings - Fork 9
/
.gitlab-ci.yml
57 lines (53 loc) · 1.33 KB
/
.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
variables:
SampleName: FFX_ParallelSort
GIT_SUBMODULE_STRATEGY: normal
stages:
- build
- deploy
build_dx12:
tags:
- windows
- amd64
stage: build
script:
- 'cmake -S sample -B sample/build/DX12 -G "Visual Studio 16 2019" -A x64 -DGFX_API=DX12 -DBUILD_INSTALLER=ON'
- 'cmake --build sample/build/DX12 --config Release'
artifacts:
paths:
- sample/bin/
build_vk:
tags:
- windows
- amd64
stage: build
script:
- 'cmake -S sample -B sample/build/VK -G "Visual Studio 16 2019" -A x64 -DGFX_API=VK -DBUILD_INSTALLER=ON'
- 'cmake --build sample/build/VK --config Release'
artifacts:
paths:
- sample/bin/
package_sample:
tags:
- windows
- amd64
stage: deploy
dependencies:
- build_dx12
- build_vk
script:
- echo "Packaging build"
- copy %VULKAN_SDK%\Bin\glslc.exe .\sample\bin
- echo cd .\sample\bin\ > %SampleName%_DX12.bat
- echo start %SampleName%_DX12.exe >> %SampleName%_DX12.bat
- echo cd .\sample\bin\ > %SampleName%_VK.bat
- echo start %SampleName%_VK.exe >> %SampleName%_VK.bat
artifacts:
name: "%SampleName%-%CI_COMMIT_TAG%-%CI_COMMIT_REF_NAME%-%CI_COMMIT_SHORT_SHA%"
paths:
- "sample/bin/"
- "sample/media/"
- "docs/"
- "readme.md"
- "license.txt"
- "%SampleName%_DX12.bat"
- "%SampleName%_VK.bat"