-
Notifications
You must be signed in to change notification settings - Fork 10
305 lines (280 loc) · 12.2 KB
/
ci.yml
File metadata and controls
305 lines (280 loc) · 12.2 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
name: Build and Test
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
# Linux job
linux:
name: Linux (${{ matrix.compiler }}, ${{ matrix.config.name }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
compiler: [gcc, clang]
config:
- name: "Default"
cmake_args: "-DFS_BUILD_EXAMPLES=ON -DFS_BUILD_TESTS=ON -DFS_BUILD_TOOLS=ON -DCMAKE_C_FLAGS=-Werror -DCMAKE_CXX_FLAGS=-Werror"
- name: "Force C++"
cmake_args: "-DFS_FORCE_CXX=ON -DFS_BUILD_EXAMPLES=ON -DFS_BUILD_TESTS=ON -DFS_BUILD_TOOLS=ON -DCMAKE_C_FLAGS=-Werror -DCMAKE_CXX_FLAGS=-Werror"
- name: "Force C89"
cmake_args: "-DFS_FORCE_C89=ON -DFS_BUILD_EXAMPLES=ON -DFS_BUILD_TESTS=ON -DFS_BUILD_TOOLS=ON -DCMAKE_C_FLAGS=-Werror -DCMAKE_CXX_FLAGS=-Werror"
- name: "_FILE_OFFSET_BITS=32"
cmake_args: "-DFS_BUILD_EXAMPLES=ON -DFS_BUILD_TESTS=ON -DFS_BUILD_TOOLS=ON -DCMAKE_C_FLAGS='-D_FILE_OFFSET_BITS=32 -Werror' -DCMAKE_CXX_FLAGS='-D_FILE_OFFSET_BITS=32 -Werror'"
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y cmake
- name: Setup compiler
run: |
if [ "${{ matrix.compiler }}" = "clang" ]; then
sudo apt-get install -y clang
echo "CC=clang" >> $GITHUB_ENV
echo "CXX=clang++" >> $GITHUB_ENV
else
echo "CC=gcc" >> $GITHUB_ENV
echo "CXX=g++" >> $GITHUB_ENV
fi
- name: Configure CMake
run: cmake -B build ${{ matrix.config.cmake_args }}
- name: Build
run: cmake --build build --parallel $(nproc)
- name: Run tests
run: cd build && ctest --output-on-failure --verbose --parallel $(nproc)
# Windows job
windows:
name: Windows (${{ matrix.compiler }}, ${{ matrix.arch }}, ${{ matrix.config.name }})
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
include:
# MSVC builds - both 32-bit and 64-bit
- compiler: msvc
arch: x64
config: {name: "Default", cmake_args: "-DFS_BUILD_EXAMPLES=ON -DFS_BUILD_TESTS=ON -DFS_BUILD_TOOLS=ON"}
- compiler: msvc
arch: x64
config: {name: "Force C++", cmake_args: "-DFS_FORCE_CXX=ON -DFS_BUILD_EXAMPLES=ON -DFS_BUILD_TESTS=ON -DFS_BUILD_TOOLS=ON"}
- compiler: msvc
arch: x64
config: {name: "UNICODE", cmake_args: "-DFS_BUILD_EXAMPLES=ON -DFS_BUILD_TESTS=ON -DFS_BUILD_TOOLS=ON", c_flags: "-DUNICODE", cxx_flags: "-DUNICODE"}
- compiler: msvc
arch: x64
config: {name: "Non-UNICODE", cmake_args: "-DFS_BUILD_EXAMPLES=ON -DFS_BUILD_TESTS=ON -DFS_BUILD_TOOLS=ON", c_flags: "-UMBCS", cxx_flags: "-UMBCS"}
- compiler: msvc
arch: x86
config: {name: "Default", cmake_args: "-DFS_BUILD_EXAMPLES=ON -DFS_BUILD_TESTS=ON -DFS_BUILD_TOOLS=ON"}
- compiler: msvc
arch: x86
config: {name: "Force C++", cmake_args: "-DFS_FORCE_CXX=ON -DFS_BUILD_EXAMPLES=ON -DFS_BUILD_TESTS=ON -DFS_BUILD_TOOLS=ON"}
- compiler: msvc
arch: x86
config: {name: "UNICODE", cmake_args: "-DFS_BUILD_EXAMPLES=ON -DFS_BUILD_TESTS=ON -DFS_BUILD_TOOLS=ON", c_flags: "-DUNICODE", cxx_flags: "-DUNICODE"}
- compiler: msvc
arch: x86
config: {name: "Non-UNICODE", cmake_args: "-DFS_BUILD_EXAMPLES=ON -DFS_BUILD_TESTS=ON -DFS_BUILD_TOOLS=ON", c_flags: "-UMBCS", cxx_flags: "-UMBCS"}
# MinGW builds - 64-bit only
- compiler: mingw
arch: x64
config: {name: "Default", cmake_args: "-DFS_BUILD_EXAMPLES=ON -DFS_BUILD_TESTS=ON -DFS_BUILD_TOOLS=ON"}
- compiler: mingw
arch: x64
config: {name: "Force C++", cmake_args: "-DFS_FORCE_CXX=ON -DFS_BUILD_EXAMPLES=ON -DFS_BUILD_TESTS=ON -DFS_BUILD_TOOLS=ON"}
- compiler: mingw
arch: x64
config: {name: "Force C89", cmake_args: "-DFS_FORCE_C89=ON -DFS_BUILD_EXAMPLES=ON -DFS_BUILD_TESTS=ON -DFS_BUILD_TOOLS=ON"}
- compiler: mingw
arch: x64
config: {name: "UNICODE", cmake_args: "-DFS_BUILD_EXAMPLES=ON -DFS_BUILD_TESTS=ON -DFS_BUILD_TOOLS=ON", c_flags: "-DUNICODE", cxx_flags: "-DUNICODE"}
- compiler: mingw
arch: x64
config: {name: "Non-UNICODE", cmake_args: "-DFS_BUILD_EXAMPLES=ON -DFS_BUILD_TESTS=ON -DFS_BUILD_TOOLS=ON", c_flags: "-UMBCS", cxx_flags: "-UMBCS"}
steps:
- uses: actions/checkout@v4
- name: Setup MSVC
if: matrix.compiler == 'msvc'
uses: ilammy/msvc-dev-cmd@v1
with:
arch: ${{ matrix.arch }}
- name: Setup MinGW
if: matrix.compiler == 'mingw'
uses: msys2/setup-msys2@v2
with:
msystem: MINGW64
update: true
install: >-
mingw-w64-x86_64-gcc
mingw-w64-x86_64-cmake
mingw-w64-x86_64-make
- name: Configure CMake (MSVC)
if: matrix.compiler == 'msvc'
run: cmake -B build ${{ matrix.config.cmake_args }} -A ${{ matrix.arch == 'x86' && 'Win32' || 'x64' }} -DCMAKE_C_FLAGS="/WX ${{ matrix.config.c_flags || '' }}" -DCMAKE_CXX_FLAGS="/WX ${{ matrix.config.cxx_flags || '' }}"
- name: Configure CMake (MinGW)
if: matrix.compiler == 'mingw'
shell: msys2 {0}
run: cmake -B build -G "MinGW Makefiles" ${{ matrix.config.cmake_args }} -DCMAKE_C_FLAGS="-Werror ${{ matrix.config.c_flags || '' }}" -DCMAKE_CXX_FLAGS="-Werror ${{ matrix.config.cxx_flags || '' }}"
- name: Build (MSVC)
if: matrix.compiler == 'msvc'
run: cmake --build build --parallel --config Debug
- name: Build (MinGW)
if: matrix.compiler == 'mingw'
shell: msys2 {0}
run: cmake --build build --parallel
- name: Run tests (MSVC)
if: matrix.compiler == 'msvc'
run: cd build && ctest --output-on-failure --verbose --parallel -C Debug
- name: Run tests (MinGW)
if: matrix.compiler == 'mingw'
shell: msys2 {0}
run: cd build && ctest --output-on-failure --verbose --parallel
# macOS job
macos:
name: macOS (${{ matrix.config.name }})
runs-on: macos-latest
strategy:
fail-fast: false
matrix:
config:
- name: "Default"
cmake_args: "-DFS_BUILD_EXAMPLES=ON -DFS_BUILD_TESTS=ON -DFS_BUILD_TOOLS=ON -DCMAKE_C_FLAGS=-Werror -DCMAKE_CXX_FLAGS=-Werror"
- name: "Force C++"
cmake_args: "-DFS_FORCE_CXX=ON -DFS_BUILD_EXAMPLES=ON -DFS_BUILD_TESTS=ON -DFS_BUILD_TOOLS=ON -DCMAKE_C_FLAGS=-Werror -DCMAKE_CXX_FLAGS=-Werror"
- name: "Force C89"
cmake_args: "-DFS_FORCE_C89=ON -DFS_BUILD_EXAMPLES=ON -DFS_BUILD_TESTS=ON -DFS_BUILD_TOOLS=ON -DCMAKE_C_FLAGS=-Werror -DCMAKE_CXX_FLAGS=-Werror"
- name: "_FILE_OFFSET_BITS=32"
cmake_args: "-DFS_BUILD_EXAMPLES=ON -DFS_BUILD_TESTS=ON -DFS_BUILD_TOOLS=ON -DCMAKE_C_FLAGS='-D_FILE_OFFSET_BITS=32 -Werror' -DCMAKE_CXX_FLAGS='-D_FILE_OFFSET_BITS=32 -Werror'"
steps:
- uses: actions/checkout@v4
- name: Configure CMake
run: cmake -B build ${{ matrix.config.cmake_args }}
- name: Build
run: cmake --build build --parallel $(sysctl -n hw.ncpu)
- name: Run tests
run: cd build && ctest --output-on-failure --verbose --parallel $(sysctl -n hw.ncpu)
# Android job
android:
name: Android (${{ matrix.arch }}, ${{ matrix.config.name }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
arch: [arm64-v8a, armeabi-v7a, x86_64]
config:
- name: "Default"
cmake_args: "-DFS_BUILD_EXAMPLES=ON -DFS_BUILD_TESTS=ON -DFS_BUILD_TOOLS=ON -DCMAKE_C_FLAGS=-Werror -DCMAKE_CXX_FLAGS=-Werror"
steps:
- uses: actions/checkout@v4
- name: Setup Android NDK
uses: nttld/setup-ndk@v1
with:
ndk-version: r25c
- name: Configure CMake
run: |
TOOLCHAIN_FILE=$ANDROID_NDK_ROOT/build/cmake/android.toolchain.cmake
cmake -B build \
-DCMAKE_TOOLCHAIN_FILE=$TOOLCHAIN_FILE \
-DANDROID_ABI=${{ matrix.arch }} \
-DANDROID_PLATFORM=android-21 \
${{ matrix.config.cmake_args }}
- name: Build
run: cmake --build build --parallel $(nproc)
# Emscripten job
emscripten:
name: Emscripten (${{ matrix.config.name }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
config:
- name: "Default"
cmake_args: "-DFS_BUILD_EXAMPLES=ON -DFS_BUILD_TESTS=ON -DFS_BUILD_TOOLS=ON -DCMAKE_C_FLAGS=-Werror -DCMAKE_CXX_FLAGS=-Werror"
steps:
- uses: actions/checkout@v4
- name: Setup Emscripten
uses: mymindstorm/setup-emsdk@v14
with:
version: latest
actions-cache-folder: 'emsdk-cache'
- name: Configure CMake
run: |
emcmake cmake -B build \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_EXE_LINKER_FLAGS="-s NODERAWFS=1 -s EXIT_RUNTIME=1" \
${{ matrix.config.cmake_args }}
- name: Build
run: cmake --build build --parallel $(nproc)
- name: Run tests
run: |
cd build
node fs_test.js
# FreeBSD job
freebsd:
name: FreeBSD (${{ matrix.config.name }})
runs-on: ubuntu-latest
continue-on-error: true
strategy:
fail-fast: false
matrix:
config:
- {name: "Default", cmake_args: "-DFS_BUILD_EXAMPLES=ON -DFS_BUILD_TESTS=ON -DFS_BUILD_TOOLS=ON -DCMAKE_C_FLAGS=-Werror -DCMAKE_CXX_FLAGS=-Werror"}
- {name: "_FILE_OFFSET_BITS=32", cmake_args: "-DFS_BUILD_EXAMPLES=ON -DFS_BUILD_TESTS=ON -DFS_BUILD_TOOLS=ON -DCMAKE_C_FLAGS='-D_FILE_OFFSET_BITS=32 -Werror' -DCMAKE_CXX_FLAGS='-D_FILE_OFFSET_BITS=32 -Werror'"}
steps:
- uses: actions/checkout@v4
- name: Test on FreeBSD
uses: vmactions/freebsd-vm@v1
with:
usesh: true
prepare: |
pkg install -y cmake
run: |
cmake -B build ${{ matrix.config.cmake_args }}
cmake --build build --parallel $(sysctl -n hw.ncpu)
cd build && ctest --output-on-failure --verbose --parallel $(sysctl -n hw.ncpu)
# OpenBSD job
openbsd:
name: OpenBSD (${{ matrix.config.name }})
runs-on: ubuntu-latest
continue-on-error: true
strategy:
fail-fast: false
matrix:
config:
- {name: "Default", cmake_args: "-DFS_BUILD_EXAMPLES=ON -DFS_BUILD_TESTS=ON -DFS_BUILD_TOOLS=ON -DCMAKE_C_FLAGS=-Werror -DCMAKE_CXX_FLAGS=-Werror"}
- {name: "_FILE_OFFSET_BITS=32", cmake_args: "-DFS_BUILD_EXAMPLES=ON -DFS_BUILD_TESTS=ON -DFS_BUILD_TOOLS=ON -DCMAKE_C_FLAGS='-D_FILE_OFFSET_BITS=32 -Werror' -DCMAKE_CXX_FLAGS='-D_FILE_OFFSET_BITS=32 -Werror'"}
steps:
- uses: actions/checkout@v4
- name: Test on OpenBSD
uses: vmactions/openbsd-vm@v1
with:
usesh: true
prepare: |
pkg_add cmake
run: |
cmake -B build ${{ matrix.config.cmake_args }}
cmake --build build --parallel $(sysctl -n hw.ncpu)
cd build && ctest --output-on-failure --verbose --parallel $(sysctl -n hw.ncpu)
# NetBSD job
netbsd:
name: NetBSD (${{ matrix.config.name }})
runs-on: ubuntu-latest
continue-on-error: true
strategy:
fail-fast: false
matrix:
config:
- {name: "Default", cmake_args: "-DFS_BUILD_EXAMPLES=ON -DFS_BUILD_TESTS=ON -DFS_BUILD_TOOLS=ON -DCMAKE_C_FLAGS=-Werror -DCMAKE_CXX_FLAGS=-Werror"}
- {name: "_FILE_OFFSET_BITS=32", cmake_args: "-DFS_BUILD_EXAMPLES=ON -DFS_BUILD_TESTS=ON -DFS_BUILD_TOOLS=ON -DCMAKE_C_FLAGS='-D_FILE_OFFSET_BITS=32 -Werror' -DCMAKE_CXX_FLAGS='-D_FILE_OFFSET_BITS=32 -Werror'"}
steps:
- uses: actions/checkout@v4
- name: Test on NetBSD
uses: vmactions/netbsd-vm@v1
with:
usesh: true
prepare: |
/usr/sbin/pkg_add cmake
run: |
cmake -B build ${{ matrix.config.cmake_args }}
cmake --build build
cd build && ctest --output-on-failure --verbose