-
Notifications
You must be signed in to change notification settings - Fork 0
414 lines (344 loc) · 11.6 KB
/
release.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
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
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
name: jGL CI
on:
push:
branches: [ "main" ]
tags: 'v*'
paths-ignore:
- 'doc/**'
- '.github/**'
workflow_dispatch:
pull_request:
jobs:
headers:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: pack headers
run: |
ls
mkdir headers
for inc in include/jGL \
include/jLog \
include/jThread \
include/*.h \
include/vendored/freetype/include/* \
include/vendored/glew/include/GL \
include/vendored/glfw/include/GLFW \
include/vendored/glm/glm \
include/vendored/stduuid/include/uuid.h \
include/vendored/stduuid/gsl \
include/vendored/stb_image.h;\
do cp -r $inc headers; done
ls headers
- name: pack headers mingw
run: |
ls
mkdir headers-mingw
cp -r headers/* headers-mingw
mkdir headers-mingw/VulkanSDK
cp -r include/vendored/VulkanSDK/Include headers-mingw/VulkanSDK/
cp -r include/vendored/VulkanSDK/Windows headers-mingw/VulkanSDK/
ls headers-mingw
- name: build header artifact
uses: actions/upload-artifact@v4
with:
name: headers
path: headers
- name: build header-mingw artifact
uses: actions/upload-artifact@v4
with:
name: headers-mingw
path: headers-mingw
linux:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: install dependencies
run: sudo apt-get update && sudo apt-get install -y build-essential xorg-dev mesa-common-dev libx11-dev libxrandr-dev libgl1-mesa-dev libglu1-mesa-dev libfreetype6-dev libopenal-dev libsndfile1-dev libudev-dev libxinerama-dev libxcursor-dev xvfb x11-apps vulkan-tools libvulkan-dev vulkan-validationlayers-dev spirv-tools
- name: linux-linux
run: |
./build.sh -t -r -e
mkdir linux-x86_64
cp -r build/Examples linux-x86_64-examples
cp build/libjGL.a linux-x86_64/libjGL-linux-x86_64.a
cp LICENSE linux-x86_64-examples/
cp LICENSE linux-x86_64/
- name: unit tests
working-directory: ${{github.workspace}}/build
# Execute tests defined by the CMake configuration.
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
run: |
export DISPLAY=:99
sudo Xvfb :99 -screen 0 800x600x24 &
sleep 5
MESA_GL_VERSION_OVERRIDE=3.3 ctest --exclude-regex Vulkan --extra-verbose --output-on-failure
- name: build artifact
uses: actions/upload-artifact@v4
with:
name: linux-x86_64
path: linux-x86_64
- name: build examples artifact
uses: actions/upload-artifact@v4
with:
name: linux-x86_64-examples
path: linux-x86_64-examples
windows:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: install dependencies
run: sudo apt-get update && sudo apt-get install -y xorg-dev build-essential mesa-common-dev libx11-dev libxrandr-dev libgl1-mesa-dev libglu1-mesa-dev libfreetype6-dev libopenal-dev libsndfile1-dev libudev-dev g++-mingw-w64-x86-64-posix gcc-mingw-w64-x86-64-posix libxinerama-dev libxcursor-dev vulkan-tools libvulkan-dev vulkan-validationlayers-dev spirv-tools
- name: linux-X-windows
run: |
./build.sh -t -w -r -e
mkdir windows
cp -r build/Examples windows-examples
cp build/libjGL.a windows/libjGL-windows.a
cp LICENSE windows-examples/
cp LICENSE windows/
- name: build artifact
uses: actions/upload-artifact@v4
with:
name: windows
path: windows
- name: build examples artifact
uses: actions/upload-artifact@v4
with:
name: windows-examples
path: windows-examples
macos:
runs-on: macos-13
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: install dependencies
run: |
wget https://sdk.lunarg.com/sdk/download/latest/mac/vulkan-sdk.zip -O vulkan-sdk.zip
unzip vulkan-sdk.zip
sudo ./InstallVulkan.app/Contents/macOS/InstallVulkan --root ~/vulkan --accept-licenses --default-answer --confirm-command install
ls ~/vulkan
cd ~/vulkan/
python install_vulkan.py
- name: macos-macos
run: |
./build.sh -o -e -r
mkdir macos
cp -r build/Examples macos-examples
cp build/libjGL.a macos/libjGL-macos.a
cp LICENSE macos-examples/
cp LICENSE macos/
- name: build artifact
uses: actions/upload-artifact@v4
with:
name: macos
path: macos
- name: build examples artifact
uses: actions/upload-artifact@v4
with:
name: macos-examples
path: macos-examples
linuxRun:
needs: linux
runs-on: ubuntu-22.04
steps:
- name: install dependencies
run: sudo apt-get update && sudo apt-get install -y xvfb x11-apps imagemagick
- name: get linux build
uses: actions/download-artifact@v4
with:
name: linux-x86_64-examples
- name: launch and screenshot
run: |
ls
cd Particles
chmod +x Particles
export DISPLAY=:99
sudo Xvfb :99 -screen 0 800x600x24 &
sleep 5
MESA_GL_VERSION_OVERRIDE=3.3 ./Particles &
export PID=$!
sleep 10
xwd -root -silent | convert xwd:- png:screenshot.png
sleep 5 && kill $PID
- name: upload artifact
uses: actions/upload-artifact@v4
with:
name: screenshot
path: Particles/screenshot.png
wineRun:
needs: windows
runs-on: ubuntu-22.04
steps:
- name: install dependencies
run: sudo apt-get update && sudo apt-get install -y xvfb x11-apps imagemagick wine32 wine64
- name: get linux build
uses: actions/download-artifact@v4
with:
name: windows-examples
- name: launch and screenshot
run: |
cd Particles
chmod +x Particles.exe
export DISPLAY=:99
sudo Xvfb :99 -screen 0 800x600x24 &
sleep 5
MESA_GL_VERSION_OVERRIDE=3.3 wine64 Particles.exe &
export PID=$!
sleep 10
xwd -root -silent | convert xwd:- png:screenshot.png
sleep 5 && kill $PID
- name: upload artifact
uses: actions/upload-artifact@v4
with:
name: screenshot-wine
path: Particles/screenshot.png
test-release:
needs: [linux, headers]
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: get headers
uses: actions/download-artifact@v4
with:
name: headers
path: headers/
- name: get linux build
uses: actions/download-artifact@v4
with:
name: linux-x86_64
- name: install dependencies
run: sudo apt-get update && sudo apt-get install -y xorg-dev build-essential mesa-common-dev libx11-dev libxrandr-dev libgl1-mesa-dev libglu1-mesa-dev libfreetype6-dev libopenal-dev libsndfile1-dev libudev-dev g++-mingw-w64-x86-64-posix gcc-mingw-w64-x86-64-posix libxinerama-dev libxcursor-dev vulkan-tools libvulkan-dev vulkan-validationlayers-dev spirv-tools xvfb x11-apps imagemagick
- name: linux lib test
run: |
ls
mkdir tests/regression/user/include/
cp libjGL-linux-x86_64.a tests/regression/user/libjGL.a
cp -r headers/* tests/regression/user/include/
cd tests/regression/user
ls
mkdir build && cd build
cmake .. && make
test-release-mingw:
needs: [windows, headers]
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: get headers
uses: actions/download-artifact@v4
with:
name: headers-mingw
path: headers/
- name: get windows build
uses: actions/download-artifact@v4
with:
name: windows
- name: install dependencies
run: sudo apt-get update && sudo apt-get install -y xorg-dev build-essential mesa-common-dev libx11-dev libxrandr-dev libgl1-mesa-dev libglu1-mesa-dev libfreetype6-dev libopenal-dev libsndfile1-dev libudev-dev g++-mingw-w64-x86-64-posix gcc-mingw-w64-x86-64-posix libxinerama-dev libxcursor-dev vulkan-tools libvulkan-dev vulkan-validationlayers-dev spirv-tools xvfb x11-apps imagemagick
- name: mingw lib test
run: |
ls
mkdir tests/regression/user-mingw/include/
cp libjGL-windows.a tests/regression/user-mingw/libjGL.a
cp -r headers/* tests/regression/user-mingw/include/
cd tests/regression/user-mingw
./build.sh
test-release-macos:
needs: [macos, headers]
runs-on: macos-13
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: get headers
uses: actions/download-artifact@v4
with:
name: headers
path: headers/
- name: get macos build
uses: actions/download-artifact@v4
with:
name: macos
- name: install dependencies
run: |
wget https://sdk.lunarg.com/sdk/download/latest/mac/vulkan-sdk.zip -O vulkan-sdk.zip
unzip vulkan-sdk.zip
sudo ./InstallVulkan.app/Contents/macOS/InstallVulkan --root ~/vulkan --accept-licenses --default-answer --confirm-command install
ls ~/vulkan
cd ~/vulkan/
python install_vulkan.py
- name: macos lib test
run: |
ls
mkdir tests/regression/user-macos/include/
cp libjGL-macos.a tests/regression/user-macos/libjGL.a
cp -r headers/* tests/regression/user-macos/include/
cd tests/regression/user-macos
mkdir build && cd build
cmake .. -DCMAKE_TOOLCHAIN_FILE=../osx.cmake && make
release:
needs: [linux, windows, macos]
if: github.ref_type == 'tag'
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: get headers
uses: actions/download-artifact@v4
with:
name: headers
path: headers/
- name: get linux build
uses: actions/download-artifact@v4
with:
name: linux-x86_64
- name: get windows build
uses: actions/download-artifact@v4
with:
name: windows
- name: get macos build
uses: actions/download-artifact@v4
with:
name: macos
- name: get headers
uses: actions/download-artifact@v4
with:
name: headers-mingw
path: headers-mingw/
- name: pack
run: |
ls
for release in linux-x86_64 macos windows;
do
mkdir $release
mv libjGL-$release.a $release/
cp LICENSE $release/
zip -r $release.zip $release/*
done
zip -r headers.zip headers
zip -r headers-mingw.zip headers-mingw
# https://github.com/softprops/action-gh-release
- name: release
uses: softprops/action-gh-release@v2
with:
draft: true
prerelease: true
name: "release-${{ github.ref_name }}"
tag_name: ${{ github.ref }}
files: |
linux-x86_64.zip
windows.zip
macos.zip
headers.zip
headers-mingw.zip