-
Notifications
You must be signed in to change notification settings - Fork 18
262 lines (221 loc) · 9.07 KB
/
linux_builds.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
name: 🐧 Linux
on:
pull_request:
branches:
- '*'
push:
branches:
- 'gd3'
env:
GOOST_BASE_BRANCH: gd3
SCONSFLAGS: godot_modules_enabled=no verbose=yes warnings=all werror=yes debug_symbols=no --jobs=4
SCONS_CACHE_LIMIT: 8192
jobs:
mono-glue:
runs-on: "ubuntu-20.04"
name: Generate Mono Glue
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
# Azure repositories are not reliable, prevent Azure giving packages.
- name: Make apt sources.list use the default Ubuntu repositories
run: |
sudo rm -f /etc/apt/sources.list.d/*
sudo cp -f misc/ci/sources.list /etc/apt/sources.list
sudo apt-get update
- 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
- name: Load .scons_cache directory
id: linux-mono-glue-cache
uses: actions/cache@v2
with:
path: ${{github.workspace}}/.scons_cache/
key: ${{github.job}}-${{env.GOOST_BASE_BRANCH}}-${{github.ref}}-${{github.sha}}
restore-keys: |
${{github.job}}-${{env.GOOST_BASE_BRANCH}}-${{github.ref}}-${{github.sha}}
${{github.job}}-${{env.GOOST_BASE_BRANCH}}-${{github.ref}}
${{github.job}}-${{env.GOOST_BASE_BRANCH}}
- name: Set up Python 3.x
uses: actions/setup-python@v2
with:
python-version: '3.x'
architecture: 'x64'
- name: Configuring Python packages
run: |
python -c "import sys; print(sys.version)"
python -m pip install scons
python --version
scons --version
- name: Compilation (module_mono_enabled=yes mono_glue=no)
env:
SCONS_CACHE: ${{github.workspace}}/.scons_cache/
run: |
scons platform=linuxbsd tools=yes target=release_debug module_mono_enabled=yes mono_glue=no copy_mono_root=yes
- name: Generate Mono Glue
run: |
pushd godot
xvfb-run ./bin/godot.x11.opt.tools.64.goost.mono --generate-mono-glue modules/mono/glue || true
popd
# - uses: actions/upload-artifact@v2
# with:
# name: mono-glue
# path: |
# godot/modules/mono/glue/**.gen.*
# godot/modules/mono/glue/GodotSharp/GodotSharp/Generated/
# godot/modules/mono/glue/GodotSharp/GodotSharpEditor/Generated/
linux-editor:
runs-on: "ubuntu-20.04"
name: Linux Editor (target=release_debug, tools=yes)
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
# Azure repositories are not reliable, prevent Azure giving packages.
- name: Make apt sources.list use the default Ubuntu repositories
run: |
sudo rm -f /etc/apt/sources.list.d/*
sudo cp -f misc/ci/sources.list /etc/apt/sources.list
sudo apt-get update
- 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
- name: Load .scons_cache directory
id: linux-editor-cache
uses: actions/cache@v2
with:
path: ${{github.workspace}}/.scons_cache/
key: ${{github.job}}-${{env.GOOST_BASE_BRANCH}}-${{github.ref}}-${{github.sha}}
restore-keys: |
${{github.job}}-${{env.GOOST_BASE_BRANCH}}-${{github.ref}}-${{github.sha}}
${{github.job}}-${{env.GOOST_BASE_BRANCH}}-${{github.ref}}
${{github.job}}-${{env.GOOST_BASE_BRANCH}}
- name: Set up Python 3.x
uses: actions/setup-python@v2
with:
python-version: '3.x'
architecture: 'x64'
- name: Configuring Python packages
run: |
python -c "import sys; print(sys.version)"
python -m pip install scons
python --version
scons --version
- name: Compilation
env:
SCONS_CACHE: ${{github.workspace}}/.scons_cache/
run: |
scons platform=linuxbsd tools=yes target=release_debug
- uses: actions/upload-artifact@v2
with:
name: godot.x11.opt.tools.64.goost
path: godot/bin/*
linux-template:
runs-on: "ubuntu-20.04"
name: Template (target=release, tools=no)
steps:
- uses: actions/checkout@v2
# Azure repositories are not reliable, prevent Azure giving packages.
- name: Make apt sources.list use the default Ubuntu repositories
run: |
sudo rm -f /etc/apt/sources.list.d/*
sudo cp -f misc/ci/sources.list /etc/apt/sources.list
sudo apt-get update
- 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
- name: Load .scons_cache directory
id: linux-template-cache
uses: actions/cache@v2
with:
path: ${{github.workspace}}/.scons_cache/
key: ${{github.job}}-${{env.GOOST_BASE_BRANCH}}-${{github.ref}}-${{github.sha}}
restore-keys: |
${{github.job}}-${{env.GOOST_BASE_BRANCH}}-${{github.ref}}-${{github.sha}}
${{github.job}}-${{env.GOOST_BASE_BRANCH}}-${{github.ref}}
${{github.job}}-${{env.GOOST_BASE_BRANCH}}
- name: Set up Python 3.x
uses: actions/setup-python@v2
with:
python-version: '3.x'
architecture: 'x64'
- name: Configuring Python packages
run: |
python -c "import sys; print(sys.version)"
python -m pip install scons
python --version
scons --version
- name: Compilation
env:
SCONS_CACHE: ${{github.workspace}}/.scons_cache/
run: |
scons platform=linuxbsd target=release tools=no
linux-server:
runs-on: "ubuntu-20.04"
name: Server (target=debug, tools=yes, tests=yes)
steps:
- uses: actions/checkout@v2
# Azure repositories are not reliable, prevent Azure giving packages.
- name: Make apt sources.list use the default Ubuntu repositories
run: |
sudo rm -f /etc/apt/sources.list.d/*
sudo cp -f misc/ci/sources.list /etc/apt/sources.list
sudo apt-get update
- 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
- name: Load .scons_cache directory
id: linux-server-cache
uses: actions/cache@v2
with:
path: ${{github.workspace}}/.scons_cache/
key: ${{github.job}}-${{env.GOOST_BASE_BRANCH}}-${{github.ref}}-${{github.sha}}
restore-keys: |
${{github.job}}-${{env.GOOST_BASE_BRANCH}}-${{github.ref}}-${{github.sha}}
${{github.job}}-${{env.GOOST_BASE_BRANCH}}-${{github.ref}}
${{github.job}}-${{env.GOOST_BASE_BRANCH}}
- name: Set up Python 3.x
uses: actions/setup-python@v2
with:
python-version: '3.x'
architecture: 'x64'
- name: Configuring Python packages
run: |
python -c "import sys; print(sys.version)"
python -m pip install scons
python --version
scons --version
- name: Compilation (goost_core_enabled=no)
env:
SCONS_CACHE: ${{github.workspace}}/.scons_cache/
run: |
scons platform=server tools=yes target=debug debug_symbols=yes tests=yes use_asan=yes use_lsan=yes use_ubsan=yes goost_core_enabled=no
- name: Compilation (goost_editor_enabled=no)
env:
SCONS_CACHE: ${{github.workspace}}/.scons_cache/
run: |
scons platform=server tools=yes target=debug debug_symbols=yes tests=yes use_asan=yes use_lsan=yes use_ubsan=yes goost_editor_enabled=no
- name: Compilation (goost_scene_enabled=no)
env:
SCONS_CACHE: ${{github.workspace}}/.scons_cache/
run: |
scons platform=server tools=yes target=debug debug_symbols=yes tests=yes use_asan=yes use_lsan=yes use_ubsan=yes goost_scene_enabled=no
# Should be run last, must run all unit tests afterwards.
- name: Compilation (goost_components_enabled=yes)
env:
SCONS_CACHE: ${{github.workspace}}/.scons_cache/
run: |
scons platform=server tools=yes target=debug debug_symbols=yes tests=yes use_asan=yes use_lsan=yes use_ubsan=yes goost_components_enabled=yes
- name: Run unit tests
run: |
python run.py --windowed tests
- uses: actions/upload-artifact@v2
with:
name: godot_server.x11.tools.64.goosts
path: godot/bin/*
retention-days: 30