-
Notifications
You must be signed in to change notification settings - Fork 30
/
.gitlab-ci.yml
65 lines (62 loc) · 1.4 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
58
59
60
61
62
63
64
65
variables:
GIT_DEPTH: 1
stages:
- build
win64_build_release:
stage: build
script:
- .\\buildscripts\\Build_Release.bat
artifacts:
paths:
- GigiViewerDX12.exe
- GigiViewerDX12.pdb
- GigiViewerDX12.exp
- GigiViewerDX12.lib
- GigiViewerDX12.ico
- GigiEdit.exe
- GigiEdit.pdb
- GigiEdit.ico
- GigiCompiler.exe
- GigiCompiler.pdb
- python310.dll
- libcurl-x64.dll
- WinPixEventRuntime.dll
- dxcompiler.dll
- dxil.dll
- slang.dll
- gigihelp.html
- gigischema.json
- LICENSE.txt
- Install.nsi
- MakeCode_UnitTests_DX12.bat
- MakeCode_UnitTests_DX12.py
- MakeCode_UnitTests_FB.bat
- MakeCode_UnitTests_FB.py
- MakeCode_UnitTests_UE_5_3.bat
- MakeCode_UnitTests_UE_5_3.py
- GigiViewerDX12/python/*
- _GeneratedCode/*
- Techniques/*
- UserDocumentation/*
- external/AgilitySDK/bin/*
- external/fonts/OpenSans-Regular.ttf
- GigiCompilerLib/Backends/DX12/templates/*
- GigiCompilerLib/Backends/Frostbite/templates/*
- GigiCompilerLib/Backends/UE_5_3/templates/*
expire_in: 1 week
tags:
- seed
- halcyon
- vs2022
- windows
- cpu
win64_build_debug:
stage: build
script:
- .\\buildscripts\\Build_Debug.bat
tags:
- seed
- halcyon
- vs2022
- windows
- cpu