-
Notifications
You must be signed in to change notification settings - Fork 0
160 lines (140 loc) · 5.17 KB
/
Windows.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
name: Windows
on:
push:
branches: [master]
pull_request:
branches: [master]
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-2022]
buildconfig: [Game_Win64, Editor]
configuration:
- Debug
- Release
- Retail
include:
- os: windows-2022
shell: cmd
compiler: cl
target: Windows
steps:
- name: Add MSBuild to PATH
uses: microsoft/[email protected]
- name: Check out repo
uses: actions/checkout@v2
with:
submodules: recursive
- name: Install Mono
shell: cmd
run: choco install mono
- name: Setup dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: "5.0.100"
- name: change dirs
run: |
ls
- name: Generate third party solutions
shell: cmd
run: |
cd Engine/ThirdParty
call GenerateSolutions.bat
cd ../../
- name: Generate a Game project
shell: cmd
run: cd Project && call GenerateSolution.bat && cd ../
- name: Compile Tools
if: ${{ matrix.buildconfig == 'Game_Win64' }}
shell: cmd
run: msbuild Stack.sln /property:Configuration="Editor_Release"
- name: Compile Project
shell: cmd
run: msbuild Stack.sln /property:Configuration="${{matrix.buildconfig}}"
- name: Copy Assets
shell: cmd
run: call CopyAssets.bat
- name: Copy Editor Assets
shell: cmd
continue-on-error: true
run: |
robocopy ".build/Release/Assets" ".build\\Editor_Release\\Assets" *.* /w:0 /r:1 /v /E
robocopy "Engine/Tools" ".build\\Editor_Release\\Engine\\Tools" *.* /w:0 /r:1 /v /E
- name: Archive Editor
if: ${{ matrix.buildconfig == 'Editor_Release' }}
uses: actions/upload-artifact@v2
with:
name: Stack v${{github.run_number}} - Editor
path: |
.build/${{matrix.buildconfig}}
!.build/${{matrix.buildconfig}}/AppX
!.build/${{matrix.buildconfig}}/Tools/**/*.*
!.build/${{matrix.buildconfig}}/*.lib
!.build/${{matrix.buildconfig}}/*.pdb
!.build/${{matrix.buildconfig}}/*.exp
!.build/${{matrix.buildconfig}}/*.log
.build/${{matrix.buildconfig}}/Tools/Optick.exe
.build/${{matrix.buildconfig}}/Tools/Win64/*.*
- name: Cook Assets
if: ${{ matrix.buildconfig == 'Game_Win64' }}
shell: cmd
run: |
cd ".build/Editor_Release/"
call Havana.exe -CompileAssets
cd ../../
- name: Copy Cooked Assets
if: ${{ matrix.buildconfig == 'Game_Win64' }}
shell: cmd
continue-on-error: true
run: |
robocopy ".build/Editor_Release/Assets" ".build\\Game_Win64\\Assets" *.* /w:0 /r:1 /v /E
- name: Archive Build
if: ${{ matrix.buildconfig == 'Game_Win64' }}
uses: actions/upload-artifact@v2
with:
name: Stack v${{github.run_number}} - ${{matrix.buildconfig}}
path: |
.build/${{matrix.buildconfig}}
.build/${{matrix.buildconfig}}/Assets
!.build/${{matrix.buildconfig}}/AppX
!.build/${{matrix.buildconfig}}/*.lib
!.build/${{matrix.buildconfig}}/*.pdb
!.build/${{matrix.buildconfig}}/*.exp
!.build/${{matrix.buildconfig}}/*.log
!.build/${{matrix.buildconfig}}/**/*.png
!.build/${{matrix.buildconfig}}/**/*.jpg
!.build/${{matrix.buildconfig}}/**/*.frag
!.build/${{matrix.buildconfig}}/**/*.vert
!.build/${{matrix.buildconfig}}/**/*.var
!.build/${{matrix.buildconfig}}/**/*.sh
- name: Copy Tools Assets
shell: cmd
continue-on-error: true
run: |
robocopy "Engine/Tools/HUB/Assets" ".build\\Editor_Release\\Assets" *.* /w:0 /r:1 /v /E
robocopy "Engine/Tools/HUB" ".build\\Editor_Release" *.exe /w:0 /r:1 /v /E
- name: Archive Tools
if: ${{ matrix.buildconfig == 'Editor_Release' }}
uses: actions/upload-artifact@v2
with:
name: HUB v${{github.run_number}}
path: |
.build/${{matrix.buildconfig}}/HUB.exe
.build/${{matrix.buildconfig}}/Assets/Close.png
.build/${{matrix.buildconfig}}/Assets/Minimize.png
.build/${{matrix.buildconfig}}/Assets/VS.png
.build/${{matrix.buildconfig}}/Assets/LOGO.png
.build/${{matrix.buildconfig}}/shaderc.exe
.build/${{matrix.buildconfig}}/texturec.exe
.build/${{matrix.buildconfig}}/*.dll
!.build/${{matrix.buildconfig}}/AppX
!.build/${{matrix.buildconfig}}/Tools/**/*.*
!.build/${{matrix.buildconfig}}/*.lib
!.build/${{matrix.buildconfig}}/*.pdb
!.build/${{matrix.buildconfig}}/*.exp
!.build/${{matrix.buildconfig}}/*.log
.build/${{matrix.buildconfig}}/Tools/Optick.exe
.build/${{matrix.buildconfig}}/Tools/Win64/*.*