-
Notifications
You must be signed in to change notification settings - Fork 6
317 lines (276 loc) · 10.3 KB
/
publish.yml
File metadata and controls
317 lines (276 loc) · 10.3 KB
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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
name: Publish
on:
release:
types: [prereleased, released]
jobs:
grab-reference-assemblies:
name: Get reference assemblies from Unity
runs-on: ubuntu-latest
strategy:
matrix:
unity-version: [ "2022.3.9", "2022.3.62" ]
netcode-version: [ "1.5.2", "1.6.0", "1.7.0", "1.7.1", "1.8.0", "1.8.1", "1.12.0", "1.12.1", "1.12.2", "1.13.0", "1.13.1", "1.14.0", "1.14.1" ]
transport-version: [ "1.0.0", "2.2.1" ]
include:
- unity-version: "2022.3.9"
unity-version-revision: "f1"
- unity-version: "2022.3.62"
unity-version-revision: "f2"
steps:
- name: Fetch Sources
uses: actions/checkout@v4
- name: Set Unity version
run: |
echo "m_EditorVersion: ${{ matrix.unity-version }}${{ matrix.unity-version-revision }}" > UnityProject/ProjectSettings/ProjectVersion.txt
- name: Set Transport version
run: |
tmp=$(mktemp)
jq '.dependencies["com.unity.transport"] = "${{ matrix.transport-version }}" | .dependencies["com.unity.netcode.gameobjects"] = "${{ matrix.netcode-version }}"' UnityProject/Packages/manifest.json > "$tmp"
mv "$tmp" UnityProject/Packages/manifest.json
- name: Cache Unity project
uses: actions/cache@v4
with:
path: ./UnityProject/Library
key: Library-UnityNetcodePatcher-uv${{ matrix.unity-version }}-nv${{ matrix.netcode-version }}-tv${{ matrix.transport-version }}-linux-x64
restore-keys: |
Library-UnityNetcodePatcher-uv${{ matrix.unity-version }}-nv${{ matrix.netcode-version }}-tv${{ matrix.transport-version }}-
Library-UnityNetcodePatcher-uv${{ matrix.unity-version }}-nv${{ matrix.netcode-version }}-
Library-UnityNetcodePatcher-uv${{ matrix.unity-version }}-
Library-UnityNetcodePatcher-
Library-
- name: Restore Unity project
uses: game-ci/unity-builder@v4
env:
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
with:
allowDirtyBuild: true
projectPath: ./UnityProject
targetPlatform: StandaloneLinux64
buildMethod: UnityBuilderAction.RestoreScript.Restore
customParameters: -hostPlatform linux
- name: Tree assembly source paths
run: |
sudo apt-get install tree
tree ./UnityProject/Library/ScriptAssemblies/
tree ./UnityProject/UnityEditor
- name: Upload assemblies as build artifact
uses: actions/upload-artifact@v4
with:
name: reference-assemblies-uv${{ matrix.unity-version }}-nv${{ matrix.netcode-version }}-tv${{ matrix.transport-version }}
path: |
UnityProject/Library/ScriptAssemblies/
UnityProject/UnityEditor/
build-patchers:
name: Build patcher for Netcode ${{ matrix.netcode-version }}
needs: grab-reference-assemblies
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
unity-version: [ "2022.3.9", "2022.3.62" ]
netcode-version: [ "1.5.2", "1.6.0", "1.7.0", "1.7.1", "1.8.0", "1.8.1", "1.12.0", "1.12.1", "1.12.2", "1.13.0", "1.13.1", "1.14.0", "1.14.1" ]
transport-version: [ "1.0.0", "2.2.1" ]
native-collection-support: [ true, false ]
steps:
- name: Fetch Sources
uses: actions/checkout@v4
with:
fetch-depth: 0
filter: tree:0
submodules: recursive
- name: Fetch Reference Assemblies
uses: actions/download-artifact@v4
with:
name: reference-assemblies-uv${{ matrix.unity-version }}-nv${{ matrix.netcode-version }}-tv${{ matrix.transport-version }}
path: UnityProject/
- uses: actions/setup-dotnet@v4
with:
dotnet-version: "8.0.*"
- name: Build patcher
shell: bash
run: |
cd NetcodePatcher.Build
./build.sh --unity-version ${{ matrix.unity-version }} --netcode-version ${{ matrix.netcode-version }} --transport-version ${{ matrix.transport-version }} --native-collection-support ${{ matrix.native-collection-support }} --unity-editor-dir "${{ github.workspace }}/UnityProject/UnityEditor"
- name: Upload assembly artifacts
uses: actions/upload-artifact@v4
with:
name: uv${{ matrix.unity-version }}-nv${{ matrix.netcode-version }}-tv${{ matrix.transport-version }}-ncs-${{ matrix.native-collection-support }}-patcher-assemblies
path: "./NetcodePatcher/dist/**/*"
build-patcher-archive:
name: Build patcher archive
needs: build-patchers
runs-on: ubuntu-latest
steps:
- name: Fetch Sources
uses: actions/checkout@v4
with:
fetch-depth: 0
filter: tree:0
submodules: recursive
- name: Fetch Patcher Assemblies
uses: actions/download-artifact@v4
with:
pattern: "*-patcher-assemblies"
merge-multiple: true
path: ./patchers
- name: Create Patcher Archive
run: zip -r patchers.zip patchers
- name: Upload patcher archive artifact
uses: actions/upload-artifact@v4
with:
name: patcher-zip-build
path: "./patchers.zip"
build-cli-binaries:
name: Build CLI for ${{ matrix.target }}
needs: build-patchers
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
kind: [ 'linux', 'windows', 'macOS' ]
include:
- kind: linux
target: linux-x64
os: ubuntu-latest
- kind: windows
target: win-x64
os: windows-latest
- kind: macOS
target: osx-x64
os: macos-latest
steps:
- name: Fetch Sources
uses: actions/checkout@v4
with:
fetch-depth: 0
filter: tree:0
submodules: recursive
- name: Fetch Patcher Assemblies
uses: actions/download-artifact@v4
with:
pattern: "*-patcher-assemblies"
merge-multiple: true
path: ./NetcodePatcher/dist
- uses: actions/setup-dotnet@v4
with:
dotnet-version: "8.0.*"
- name: Build CLI binary
shell: bash
run: |
dotnet build NetcodePatcher.Cli/NetcodePatcher.Cli.csproj -c ReleaseTools -t:CreateZip -r "${{ matrix.target }}" --self-contained true -f net8.0
- name: Upload platform binary artifacts
uses: actions/upload-artifact@v4
with:
name: cli-${{ matrix.target }}-zip-build
path: "./NetcodePatcher.Cli/bin/ReleaseTools/net8.0/${{ matrix.target }}/*.zip"
build-cli-nupkg:
name: Build CLI .nupkg
needs: build-patchers
runs-on: ubuntu-latest
steps:
- name: Fetch Sources
uses: actions/checkout@v4
with:
fetch-depth: 0
filter: tree:0
submodules: recursive
- name: Fetch Patcher Assemblies
uses: actions/download-artifact@v4
with:
pattern: "*-patcher-assemblies"
merge-multiple: true
path: ./NetcodePatcher/dist
- uses: actions/setup-dotnet@v4
with:
dotnet-version: "8.0.*"
- name: Pack CLI nupkg
shell: bash
run: |
dotnet pack NetcodePatcher.Cli/NetcodePatcher.Cli.csproj -c ReleaseTools
- name: Upload nupkg artifact
uses: actions/upload-artifact@v4
with:
name: cli-nupkg-build
path: "./NetcodePatcher.Cli/bin/ReleaseTools/*.nupkg"
build-msbuild-nupkg:
name: Build NetcodePatcher.MSBuild
needs: build-patchers
runs-on: ubuntu-latest
steps:
- name: Fetch Sources
uses: actions/checkout@v4
with:
fetch-depth: 0
filter: tree:0
submodules: recursive
- name: Fetch Patcher Assemblies
uses: actions/download-artifact@v4
with:
pattern: "*-patcher-assemblies"
merge-multiple: true
path: ./NetcodePatcher/dist
- uses: actions/setup-dotnet@v4
with:
dotnet-version: "8.0.*"
- name: Build MSBuild tasks
run: |
dotnet build NetcodePatcher.MSBuild.Tasks/NetcodePatcher.MSBuild.Tasks.csproj -c Release
- name: Build MSBuild package
shell: bash
run: |
dotnet pack NetcodePatcher.MSBuild/NetcodePatcher.MSBuild.csproj -c ReleaseTools
- name: Upload nupkg Artifacts
uses: actions/upload-artifact@v4
with:
name: msbuild-nupkg-build
path: "./NetcodePatcher.MSBuild/bin/ReleaseTools/*.nupkg"
upload-nupkgs-to-release:
name: Upload nupkg release artifacts
needs: [build-cli-nupkg, build-msbuild-nupkg, build-patchers]
runs-on: ubuntu-latest
steps:
- name: Fetch Sources
uses: actions/checkout@v4
- name: Download all nupkg artifacts
uses: actions/download-artifact@v4
with:
path: ./nupkg-build
pattern: "*-nupkg-build"
merge-multiple: true
- name: Upload artifacts to Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh release upload ${{ github.event.release.tag_name }} ./nupkg-build/*.nupkg
upload-binaries-to-release:
name: Upload binary release artifacts
needs: build-cli-binaries
runs-on: ubuntu-latest
steps:
- name: Fetch Sources
uses: actions/checkout@v4
- name: Download all binary artifacts
uses: actions/download-artifact@v4
with:
path: ./zip-build
pattern: "*-zip-build"
merge-multiple: true
- name: Upload artifacts to Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh release upload ${{ github.event.release.tag_name }} ./zip-build/*.zip
deploy-nuget:
name: Deploy to NuGet
needs: [build-patchers, build-cli-nupkg, build-msbuild-nupkg]
runs-on: ubuntu-latest
steps:
- name: Download nupkg artifact
uses: actions/download-artifact@v4
with:
path: ./nupkg-build
pattern: "*-nupkg-build"
merge-multiple: true
- name: Publish to NuGet.org
run: |
dotnet nuget push ./nupkg-build/*.nupkg --api-key ${{ secrets.NUGET_API_TOKEN }} --source https://api.nuget.org/v3/index.json