-
-
Notifications
You must be signed in to change notification settings - Fork 77
413 lines (334 loc) · 13.3 KB
/
ci.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
name: CI
on: [push, pull_request]
env:
SDL2_VERSION: 2.30.8
SDL3_VERSION: 3.1.3
jobs:
linux:
name: Rocky Linux
runs-on: ubuntu-latest
container:
image: rockylinux/rockylinux:8
steps:
- name: Are we really on Rocky Linux?
run: cat /etc/os-release
- name: Install dependencies
run: |
dnf update -y
dnf install -y epel-release
crb enable
dnf install -y chrpath cmake gcc-c++ git ninja-build
- uses: actions/checkout@v4
with:
submodules: true
- name: Clone SDL2
run: git clone --depth 1 --branch release-$SDL2_VERSION https://github.com/libsdl-org/SDL.git
- name: Build SDL2 (Debug)
run: |
cd SDL
cmake -B build -G Ninja . -DCMAKE_BUILD_TYPE=Release
ninja -C build
cd ..
- name: CMake configure (Debug)
run: cmake -B debug -G Ninja . -DCMAKE_BUILD_TYPE=Debug -DSDL2_INCLUDE_DIRS=${GITHUB_WORKSPACE}/SDL/include -DSDL2_LIBRARIES=${GITHUB_WORKSPACE}/SDL/build/libSDL2-2.0.so
- name: Build (Debug)
run: ninja -C debug
- name: CMake configure (Release)
run: cmake -B release -G Ninja . -DCMAKE_BUILD_TYPE=Release -DSDL2_INCLUDE_DIRS=${GITHUB_WORKSPACE}/SDL/include -DSDL2_LIBRARIES=${GITHUB_WORKSPACE}/SDL/build/libSDL2-2.0.so
- name: Build (Release)
run: |
ninja -C release
chrpath -d release/libFAudio.so.0
strip -S release/libFAudio.so.0
- name: Archive build result
uses: actions/upload-artifact@v4
with:
name: FAudio-SDL2-lib64
path: release/libFAudio.so.0
linux-mingw:
name: Rocky Linux MinGW
runs-on: ubuntu-latest
container:
image: rockylinux/rockylinux:9
steps:
- name: Are we really on Rocky Linux?
run: cat /etc/os-release
- name: Install dependencies
run: |
dnf update -y
dnf install -y epel-release
crb enable
dnf install -y git cmake ninja-build mingw32-gcc mingw64-gcc
- uses: actions/checkout@v4
with:
submodules: true
- name: Download SDL
run: |
curl -LO https://github.com/libsdl-org/SDL/releases/download/release-$SDL2_VERSION/SDL2-devel-$SDL2_VERSION-mingw.tar.gz
tar -xvf SDL2-devel-$SDL2_VERSION-mingw.tar.gz -C ${GITHUB_WORKSPACE}
- name: CMake configure 32-bit (Release)
run: mingw32-cmake -B release-x86 -G Ninja . -DCMAKE_BUILD_TYPE=Release -DSDL2_LIBRARIES=${GITHUB_WORKSPACE}/SDL2-$SDL2_VERSION/i686-w64-mingw32/bin/SDL2.dll -DSDL2_INCLUDE_DIRS=${GITHUB_WORKSPACE}/SDL2-$SDL2_VERSION/i686-w64-mingw32/include/SDL2
- name: Build 32-bit (Release)
run: ninja -C release-x86
- name: CMake configure 64-bit (Release)
run: mingw64-cmake -B release-x64 -G Ninja . -DCMAKE_BUILD_TYPE=Release -DSDL2_LIBRARIES=${GITHUB_WORKSPACE}/SDL2-$SDL2_VERSION/x86_64-w64-mingw32/bin/SDL2.dll -DSDL2_INCLUDE_DIRS=${GITHUB_WORKSPACE}/SDL2-$SDL2_VERSION/x86_64-w64-mingw32/include/SDL2
- name: Build 64-bit (Release)
run: ninja -C release-x64
- name: CMake configure (Debug Wine)
run: mingw32-cmake -B debugwine -G Ninja . -DCMAKE_BUILD_TYPE=Debug -DPLATFORM_WIN32=ON
- name: Build (Debug Wine)
run: ninja -C debugwine
- name: CMake configure (Release Wine)
run: mingw32-cmake -B releasewine -G Ninja . -DCMAKE_BUILD_TYPE=Release -DPLATFORM_WIN32=ON
- name: Build (Release Wine)
run: ninja -C releasewine
- name: Archive build result 32-bit
uses: actions/upload-artifact@v4
with:
name: FAudio-SDL2-x86
path: release-x86/FAudio.dll
- name: Archive build result 64-bit
uses: actions/upload-artifact@v4
with:
name: FAudio-SDL2-x64
path: release-x64/FAudio.dll
macos:
name: macOS (x86_64)
runs-on: macos-13
env:
CXXFLAGS: -I/usr/local/include/SDL2
LDFLAGS: -L/usr/local/lib
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Install dependencies
run: brew install ninja sdl2
- name: CMake configure (Debug)
run: cmake -B debug -G Ninja . -DCMAKE_BUILD_TYPE=Debug -DCMAKE_OSX_DEPLOYMENT_TARGET=10.9
- name: Build (Debug)
run: ninja -C debug
- name: CMake configure (Release)
run: cmake -B release -G Ninja . -DCMAKE_BUILD_TYPE=Release -DCMAKE_OSX_DEPLOYMENT_TARGET=10.9
- name: Build (Release)
run: |
ninja -C release
install_name_tool -change /usr/local/opt/sdl2/lib/libSDL2-2.0.0.dylib @rpath/libSDL2-2.0.0.dylib release/libFAudio.0.dylib
- name: Archive build result
uses: actions/upload-artifact@v4
with:
name: FAudio-SDL2-osx
path: release/libFAudio.0.dylib
windows-msvc:
name: Windows (MSVC)
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Cache SDL
uses: actions/cache@v4
env:
cache-name: cache-sdl
with:
path: C:\SDL
key: ${{ runner.os }}-build-${{ env.cache-name }}
- name: Download SDL if not cached
run: |
if (-Not (Test-Path C:\SDL))
{
Invoke-WebRequest "https://github.com/libsdl-org/SDL/releases/download/release-$env:SDL2_VERSION/SDL2-devel-$env:SDL2_VERSION-VC.zip" -OutFile C:\SDL.zip
Expand-Archive C:\SDL.zip -DestinationPath C:\
}
- name: CMake configure (Debug)
run: |
$env:LDFLAGS = "/LIBPATH:C:\SDL2-$env:SDL2_VERSION\lib\x86 "
cmake -B debug -G "Visual Studio 17 2022" . -DCMAKE_BUILD_TYPE=Debug `
-A Win32 `
-DSDL2_INCLUDE_DIRS="C:\SDL2-$env:SDL2_VERSION\include" `
-DSDL2_LIBRARIES="SDL2;SDL2main"
- name: Build (Debug)
run: cmake --build debug
- name: CMake configure (Release)
run: |
$env:LDFLAGS = "/LIBPATH:C:\SDL2-$env:SDL2_VERSION\lib\x86 "
cmake -B release -G "Visual Studio 17 2022" . -DCMAKE_BUILD_TYPE=Release `
-A Win32 `
-DSDL2_INCLUDE_DIRS="C:\SDL2-$env:SDL2_VERSION\include" `
-DSDL2_LIBRARIES="SDL2;SDL2main"
- name: Build (Release)
run: cmake --build release
freebsd:
runs-on: ubuntu-latest
name: FreeBSD
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Build
uses: cross-platform-actions/[email protected]
with:
operating_system: freebsd
version: '13.3'
run: |
sudo pkg update
sudo pkg install -y cmake ninja sdl2
cmake -B build -G Ninja .
cmake --build build --verbose -- -j`sysctl -n hw.ncpu`
linux-SDL3:
name: Rocky Linux SDL3
runs-on: ubuntu-latest
container:
image: rockylinux/rockylinux:8
steps:
- name: Are we really on Rocky Linux?
run: cat /etc/os-release
- name: Install dependencies
run: |
dnf update -y
dnf install -y epel-release
crb enable
dnf install -y chrpath cmake gcc git ninja-build
- uses: actions/checkout@v4
with:
submodules: true
- name: Clone SDL3
run: git clone --depth 1 --branch preview-$SDL3_VERSION https://github.com/libsdl-org/SDL.git
- name: Build SDL3 (Debug)
run: |
cd SDL
cmake -B debug -G Ninja . -DCMAKE_BUILD_TYPE=Debug
ninja -C debug
cd ..
- name: CMake configure (Debug)
run: cmake -B debug -G Ninja . -DCMAKE_BUILD_TYPE=Debug -DBUILD_SDL3=ON -DSDL3_DIR=${GITHUB_WORKSPACE}/SDL/debug
- name: Build (Debug)
run: ninja -C debug
- name: CMake configure (Release)
run: cmake -B release -G Ninja . -DCMAKE_BUILD_TYPE=Release -DBUILD_SDL3=ON -DSDL3_DIR=${GITHUB_WORKSPACE}/SDL/debug
- name: Build (Release)
run: |
ninja -C release
chrpath -d release/libFAudio.so.0
strip -S release/libFAudio.so.0
- name: Archive build result
uses: actions/upload-artifact@v4
with:
name: FAudio-SDL3-lib64
path: release/libFAudio.so.0
linux-mingw-SDL3:
name: Rocky Linux MinGW SDL3
runs-on: ubuntu-latest
container:
image: rockylinux/rockylinux:9
steps:
- name: Are we really on Rocky Linux?
run: cat /etc/os-release
- name: Install dependencies
run: |
dnf update -y
dnf install -y epel-release
crb enable
dnf install -y git cmake ninja-build mingw32-gcc mingw64-gcc xz
- uses: actions/checkout@v4
with:
submodules: true
- name: Download SDL
run: |
curl -LO https://github.com/libsdl-org/SDL/releases/download/preview-$SDL3_VERSION/SDL3-devel-$SDL3_VERSION-mingw.tar.xz
tar -xvf SDL3-devel-$SDL3_VERSION-mingw.tar.xz -C ${GITHUB_WORKSPACE}
- name: CMake configure 32-bit (Release)
run: mingw32-cmake -B release-x86 -G Ninja . -DBUILD_SDL3=ON -DCMAKE_BUILD_TYPE=Release -DSDL3_LIBRARIES=${GITHUB_WORKSPACE}/SDL3-$SDL3_VERSION/i686-w64-mingw32/bin/SDL3.dll -DSDL3_INCLUDE_DIRS=${GITHUB_WORKSPACE}/SDL3-$SDL3_VERSION/i686-w64-mingw32/include
- name: Build 32-bit (Release)
run: ninja -C release-x86
- name: CMake configure 64-bit (Release)
run: mingw64-cmake -B release-x64 -G Ninja . -DBUILD_SDL3=ON -DCMAKE_BUILD_TYPE=Release -DSDL3_LIBRARIES=${GITHUB_WORKSPACE}/SDL3-$SDL3_VERSION/x86_64-w64-mingw32/bin/SDL3.dll -DSDL3_INCLUDE_DIRS=${GITHUB_WORKSPACE}/SDL3-$SDL3_VERSION/x86_64-w64-mingw32/include
- name: Build 64-bit (Release)
run: ninja -C release-x64
- name: Archive build result 32-bit
uses: actions/upload-artifact@v4
with:
name: FAudio-SDL3-x86
path: release-x86/FAudio.dll
- name: Archive build result 64-bit
uses: actions/upload-artifact@v4
with:
name: FAudio-SDL3-x64
path: release-x64/FAudio.dll
macos-SDL3:
name: macOS (Universal) SDL3
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
# This can be replaced by installing once brew ships SDL3
- name: Clone SDL3
run: git clone --depth 1 --branch preview-$SDL3_VERSION https://github.com/libsdl-org/SDL.git
- name: Install dependencies
run: brew install ninja
- name: Build SDL3 (Debug)
run: |
cd SDL
cmake -B debug -G Ninja . -DCMAKE_BUILD_TYPE=Debug -DCMAKE_OSX_ARCHITECTURES="x86_64;arm64" -DCMAKE_OSX_DEPLOYMENT_TARGET=11.0
ninja -C debug
cd ..
- name: CMake configure (Debug)
run: cmake -B debug -G Ninja . -DCMAKE_BUILD_TYPE=Debug -DCMAKE_OSX_ARCHITECTURES="x86_64;arm64" -DCMAKE_OSX_DEPLOYMENT_TARGET=11.0 -DBUILD_SDL3=ON -DSDL3_DIR=${GITHUB_WORKSPACE}/SDL/debug
- name: Build (Debug)
run: ninja -C debug
- name: CMake configure (Release)
run: cmake -B release -G Ninja . -DCMAKE_BUILD_TYPE=Release -DCMAKE_OSX_ARCHITECTURES="x86_64;arm64" -DCMAKE_OSX_DEPLOYMENT_TARGET=11.0 -DBUILD_SDL3=ON -DSDL3_DIR=${GITHUB_WORKSPACE}/SDL/debug
- name: Build (Release)
run: ninja -C release
- name: Archive build result
uses: actions/upload-artifact@v4
with:
name: FAudio-SDL3-osx
path: release/libFAudio.0.dylib
ios-tvos-SDL3:
name: iOS/tvOS SDL3
runs-on: macos-latest
strategy:
matrix:
include:
- platform: iOS
sdk: iphoneos
architectures: arm64
- platform: iOS
sdk: iphonesimulator
architectures: x86_64;arm64
- platform: tvOS
sdk: appletvos
architectures: arm64
- platform: tvOS
sdk: appletvsimulator
architectures: x86_64;arm64
steps:
- uses: actions/checkout@v4
with:
submodules: true
# This can be replaced by installing once brew ships SDL3
- name: Clone SDL3
run: git clone --depth 1 --branch preview-$SDL3_VERSION https://github.com/libsdl-org/SDL.git
- name: Install dependencies
run: brew install ninja
- name: Build SDL3 (Debug)
run: |
cd SDL
cmake -B debug -G Ninja . -DCMAKE_BUILD_TYPE=Debug -DCMAKE_SYSTEM_NAME=${{ matrix.platform }} -DCMAKE_OSX_ARCHITECTURES="${{ matrix.architectures }}" -DCMAKE_OSX_DEPLOYMENT_TARGET=13.0 -DCMAKE_OSX_SYSROOT=`xcodebuild -version -sdk ${{ matrix.sdk }} Path`
ninja -C debug
cd ..
- name: CMake configure (Debug)
run: cmake -B debug -G Ninja . -DCMAKE_BUILD_TYPE=Debug -DCMAKE_SYSTEM_NAME=${{ matrix.platform }} -DCMAKE_OSX_ARCHITECTURES="${{ matrix.architectures }}" -DCMAKE_OSX_DEPLOYMENT_TARGET=13.0 -DCMAKE_OSX_SYSROOT=`xcodebuild -version -sdk ${{ matrix.sdk }} Path` -DBUILD_SDL3=ON -DSDL3_DIR=${GITHUB_WORKSPACE}/SDL/debug -DBUILD_SHARED_LIBS=OFF
- name: Build (Debug)
run: ninja -C debug
- name: CMake configure (Release)
run: cmake -B release -G Ninja . -DCMAKE_BUILD_TYPE=Release -DCMAKE_SYSTEM_NAME=${{ matrix.platform }} -DCMAKE_OSX_ARCHITECTURES="${{ matrix.architectures }}" -DCMAKE_OSX_DEPLOYMENT_TARGET=13.0 -DCMAKE_OSX_SYSROOT=`xcodebuild -version -sdk ${{ matrix.sdk }} Path` -DBUILD_SDL3=ON -DSDL3_DIR=${GITHUB_WORKSPACE}/SDL/debug -DBUILD_SHARED_LIBS=OFF
- name: Build (Release)
run: ninja -C release
- name: Archive build result
uses: actions/upload-artifact@v4
with:
name: FAudio-SDL3-${{ matrix.sdk }}
path: release/libFAudio.a