-
-
Notifications
You must be signed in to change notification settings - Fork 256
272 lines (233 loc) · 10.3 KB
/
mono.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
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
name: 🐒 Mono Builds
on:
push:
branches: [ master, github_actions, "1.2" ]
pull_request:
branches: [ master ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
# Global Cache Settings
env:
GODOT_BASE_BRANCH: "4.3-stable"
SCONS_CACHE_LIMIT: 4096
jobs:
mono-glue:
runs-on: "ubuntu-20.04"
name: Generate Mono Glue
steps:
# Clone Godot
- uses: actions/checkout@v4
with:
repository: godotengine/godot
ref: ${{ env.GODOT_BASE_BRANCH }}
# Clone our module under the correct directory
- uses: actions/checkout@v4
with:
path: modules/voxel
# TODO That package no longer works, seems to have become more complicated on Godot's repo.
# But why was it needed actually? Now in Godot's repo, installing newer mesa has the title "Linux
# dependencies for tests", and we are not going to run tests.
# - name: Install dependencies
# run: |
# sudo add-apt-repository ppa:kisak/kisak-mesa
# sudo apt-get update
# Install all packages (except scons)
- name: Configure dependencies
run: |
sudo apt-get install build-essential pkg-config libx11-dev libxcursor-dev xvfb \
libxinerama-dev libgl1-mesa-dev libglu-dev libasound2-dev libpulse-dev libudev-dev libxi-dev libxrandr-dev yasm
# Upload cache on completion and check it out now
- name: Load .scons_cache directory
id: mono-glue-cache
uses: actions/cache@v4
with:
path: ${{github.workspace}}/.scons_cache/
key: ${{github.job}}-${{env.GODOT_BASE_BRANCH}}-${{github.ref}}-${{github.sha}}
restore-keys: |
${{github.job}}-${{env.GODOT_BASE_BRANCH}}-${{github.ref}}-${{github.sha}}
${{github.job}}-${{env.GODOT_BASE_BRANCH}}-${{github.ref}}
${{github.job}}-${{env.GODOT_BASE_BRANCH}}
# Use python 3.x release (works cross platform; best to keep self contained in it's own step)
- name: Set up Python 3.x
uses: actions/setup-python@v5
with:
# Semantic version range syntax or exact version of a Python version
python-version: '3.x'
# Optional - x64 or x86 architecture, defaults to x64
architecture: 'x64'
# Setup scons, print python version and scons version info, so if anything is broken it won't run the build.
- name: Configuring Python packages
run: |
python -c "import sys; print(sys.version)"
python -m pip install scons
python --version
scons --version
# We should always be explicit with our flags usage here since it's gonna be sure to always set those flags
- name: Compile Godot (module_mono_enabled=yes mono_glue=no)
env:
SCONS_CACHE: ${{github.workspace}}/.scons_cache/
run: |
scons verbose=yes warnings=all werror=yes platform=linuxbsd tests=no target=editor dev_build=no debug_symbols=no module_mono_enabled=yes mono_glue=no copy_mono_root=yes
- name: Generate Mono Glue
run: |
./bin/godot.linuxbsd.editor.x86_64.mono --headless --generate-mono-glue modules/mono/glue
# run: |
# xvfb-run ./bin/godot.linuxbsd.editor.x86_64.mono --headless --generate-mono-glue modules/mono/glue || true
# Make glue available as artifact for dependent jobs
- uses: actions/upload-artifact@v4
with:
name: mono-glue
path: |
modules/mono/glue/**.gen.*
modules/mono/glue/GodotSharp/GodotSharp/Generated/
modules/mono/glue/GodotSharp/GodotSharpEditor/Generated/
linux-editor-mono:
runs-on: "ubuntu-20.04"
name: Linux Editor w/ Mono
needs: mono-glue
steps:
# Clone Godot
- uses: actions/checkout@v4
with:
repository: godotengine/godot
ref: ${{ env.GODOT_BASE_BRANCH }}
# Clone our module under the correct directory
- uses: actions/checkout@v4
with:
path: modules/voxel
# TODO That package no longer works, seems to have become more complicated on Godot's repo.
# But why was it needed actually? Now in Godot's repo, installing newer mesa has the title "Linux
# dependencies for tests", and we are not going to run tests.
# - name: Install dependencies
# run: |
# sudo add-apt-repository ppa:kisak/kisak-mesa
# sudo apt-get update
# Install all packages (except scons)
- name: Configure dependencies
run: |
sudo apt-get install build-essential pkg-config libx11-dev libxcursor-dev \
libxinerama-dev libgl1-mesa-dev libglu-dev libasound2-dev libpulse-dev libudev-dev libxi-dev libxrandr-dev yasm
# Upload cache on completion and check it out now
- name: Load .scons_cache directory
id: linux-editor-mono-cache
uses: actions/cache@v4
with:
path: ${{github.workspace}}/.scons_cache/
key: ${{github.job}}-${{env.GODOT_BASE_BRANCH}}-${{github.ref}}-${{github.sha}}
restore-keys: |
${{github.job}}-${{env.GODOT_BASE_BRANCH}}-${{github.ref}}-${{github.sha}}
${{github.job}}-${{env.GODOT_BASE_BRANCH}}-${{github.ref}}
${{github.job}}-${{env.GODOT_BASE_BRANCH}}
# Use python 3.x release (works cross platform; best to keep self contained in it's own step)
- name: Set up Python 3.x
uses: actions/setup-python@v5
with:
# Semantic version range syntax or exact version of a Python version
python-version: '3.x'
# Optional - x64 or x86 architecture, defaults to x64
architecture: 'x64'
# Setup scons, print python version and scons version info, so if anything is broken it won't run the build.
- name: Configuring Python packages
run: |
python -c "import sys; print(sys.version)"
python -m pip install scons
python --version
scons --version
# Download glue from the mono-glue job
- name: Download Glue
uses: actions/download-artifact@v4
with:
name: mono-glue
path: modules/mono/glue
- name: Build the managed libraries
run: |
./modules/mono/build_scripts/build_assemblies.py --godot-output-dir=./bin
# We should always be explicit with our flags usage here since it's gonna be sure to always set those flags
- name: Compilation
env:
SCONS_CACHE: ${{github.workspace}}/.scons_cache/
run: |
scons verbose=yes warnings=all werror=yes platform=linuxbsd tests=no target=editor dev_build=no debug_symbols=no module_mono_enabled=yes mono_glue=yes mono_static=yes copy_mono_root=yes
# Make build available
- uses: actions/upload-artifact@v4
with:
name: godot.linuxbsd.editor.x86_64.mono
path: bin/*
windows-editor-mono:
# Windows 10 with latest image
runs-on: "windows-latest"
name: Windows Editor w/ Mono
needs: mono-glue
steps:
# Clone Godot
- uses: actions/checkout@v4
with:
repository: godotengine/godot
ref: ${{ env.GODOT_BASE_BRANCH }}
# The version of ThorVG in 4.3-stable hits an error in latest MSVC (see godot#95861).
# We should no longer need this in 4.3.1 and later.
- name: Patch ThorVG
run: |
curl -LO https://github.com/godotengine/godot/commit/4abc358952a69427617b0683fd76427a14d6faa8.patch
git apply 4abc358952a69427617b0683fd76427a14d6faa8.patch
# Clone our module under the correct directory
- uses: actions/checkout@v4
with:
path: modules/voxel
# Move nuget.config from voxel repo to root of checkout, so msbuild can find it
- name: Move nuget.config
run: mv modules/voxel/nuget.config ./nuget.config
# Upload cache on completion and check it out now
# Editing this is pretty dangerous for Windows since it can break and needs to be properly tested with a fresh cache.
- name: Load .scons_cache directory
id: windows-editor-mono-cache
uses: actions/cache@v4
with:
path: /.scons_cache/
key: ${{github.job}}-${{env.GODOT_BASE_BRANCH}}-${{github.ref}}-${{github.sha}}
restore-keys: |
${{github.job}}-${{env.GODOT_BASE_BRANCH}}-${{github.ref}}-${{github.sha}}
${{github.job}}-${{env.GODOT_BASE_BRANCH}}-${{github.ref}}
${{github.job}}-${{env.GODOT_BASE_BRANCH}}
# Use python 3.x release (works cross platform; best to keep self contained in it's own step)
- name: Set up Python 3.x
uses: actions/setup-python@v5
with:
# Semantic version range syntax or exact version of a Python version
python-version: '3.x'
# Optional - x64 or x86 architecture, defaults to x64
architecture: 'x64'
# Setup scons, print python version and scons version info, so if anything is broken it won't run the build.
- name: Configuring Python packages
run: |
python -c "import sys; print(sys.version)"
python -m pip install scons pywin32
python --version
scons --version
# Download glue from the mono-glue job
- name: Download Glue
uses: actions/download-artifact@v4
with:
name: mono-glue
path: modules/mono/glue
- name: Build the managed libraries
run: |
python ./modules/mono/build_scripts/build_assemblies.py --godot-output-dir=./bin
# We should always be explicit with our flags usage here since it's gonna be sure to always set those flags
- name: Compilation
env:
SCONS_CACHE_MSVC_CONFIG: true
SCONS_CACHE: /.scons_cache/
run: |
scons verbose=yes warnings=all werror=yes platform=windows tests=no target=editor dev_build=no debug_symbols=no module_mono_enabled=yes mono_glue=yes copy_mono_root=yes mono_static=yes
# TODO Enhancement: Run tests? Such tests are able to run from Godot 4.0 only
# Execute unit tests for the editor
#- name: Unit Tests
# run: |
# ./bin/godot.windows.editor.x86_64.mono.exe --test
# Make build available
- uses: actions/upload-artifact@v4
with:
name: godot.windows.editor.x86_64.mono
path: bin/*