-
Notifications
You must be signed in to change notification settings - Fork 42
603 lines (588 loc) · 18.9 KB
/
build.yaml
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
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
name: Build
on:
push: {}
pull_request: {}
schedule:
- cron: "0 5 * * MON"
workflow_dispatch: {}
concurrency:
group: ${{ github.repository }}-${{ github.head_ref || github.run_id }}-build
cancel-in-progress: true
jobs:
ubuntu:
name: "Ubuntu"
needs: clang-format
strategy:
matrix:
os: [ubuntu-22.04]
compiler: [gcc, clang]
build_type: ["", Release, Debug, RelWithDebInfo]
exclude:
- compiler: clang
build_type: RelWithDebInfo
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install GCC
if: ${{ matrix.compiler == 'gcc' }}
run: |
sudo apt-get install g++
- name: Install clang
if: ${{ matrix.compiler == 'clang' }}
run: |
sudo apt-get install clang
export CC=$(which clang)
export CXX=$(which clang++)
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install \
cmake \
ninja-build \
python3 \
python3-pip \
gettext \
qtbase5-dev \
libqt5svg5-dev \
libkf5archive-dev \
liblua5.3-dev \
libsqlite3-dev \
libsdl2-mixer-dev \
python3-sphinx
pip install -r docs/requirements.txt
- name: Configure
run: |
cmake . -B build -G Ninja \
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \
-DCMAKE_INSTALL_PREFIX=/usr
- name: Build
run: |
cmake --build build
- name: Test
run: |
cmake --build build --target test
- name: Debug
if: failure()
run: |
cat build/Testing/Temporary/LastTest.log
- name: Install
run: |
DESTDIR=$PWD/build/install cmake --build build --target install
- name: Package
run: |
cmake --build build --target package
- name: Upload package
uses: softprops/action-gh-release@v2
if: |
startsWith(github.ref, 'refs/tags/')
&& matrix.compiler == 'gcc'
&& matrix.build_type == 'Release'
with:
files: |
build/Linux-x86_64/freeciv21_*_amd64.deb
build/Linux-x86_64/freeciv21_*_amd64.deb.sha256
flagstest:
name: "Additional compile flags in Ubuntu"
needs: clang-format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install GCC
run: |
sudo apt-get install g++
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install \
cmake \
ninja-build \
python3 \
gettext \
qtbase5-dev \
libqt5svg5-dev \
libkf5archive-dev \
liblua5.3-dev \
libsqlite3-dev \
libsdl2-mixer-dev
- name: Configure
run: |
cmake . -B build -G "Ninja Multi-Config" --preset "DistroRelease"
- name: Build
run: |
cmake --build build
- name: Test
run: |
cmake --build build --target test
windows:
name: "Windows MSYS2 (gcc)"
runs-on: windows-latest
needs: clang-format
defaults:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: msys2/setup-msys2@v2
with:
msystem: MINGW64
update: true
install: |
git
mingw-w64-x86_64-cmake
mingw-w64-x86_64-ninja
mingw-w64-x86_64-nsis
mingw-w64-x86_64-gcc
mingw-w64-x86_64-libunwind
mingw-w64-x86_64-readline
mingw-w64-x86_64-lua
mingw-w64-x86_64-SDL2_mixer
mingw-w64-x86_64-qt5
mingw-w64-x86_64-qt5-svg
mingw-w64-x86_64-karchive-qt5
- name: Configure
run: |
export PATH=/mingw64/bin:${PATH}
export MSYSTEM=MINGW64
export PKG_CONFIG_PATH=${PKG_CONFIG_PATH}:/mingw64/lib/pkgconfig:/mingw64/share/pkgconfig
cmake . -B build -G Ninja \
-DCMAKE_INSTALL_PREFIX=$PWD/build/install \
-DCMAKE_BUILD_TYPE=Release
- name: Build
run: |
cmake --build build
#- name: Test
# run: |
# cmake --build build --target test
- name: Install
run: |
cmake --build build --target install
- name: Package
run: |
cmake --build build --target package
- name: Upload package
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
build/Windows-x86_64/Freeciv21-*-Windows-x86_64.exe
build/Windows-x86_64/Freeciv21-*-Windows-x86_64.exe.sha256
- name: Upload a build
uses: actions/upload-artifact@v4
with:
name: Windows-exe
path: build/Windows-x86_64/Freeciv21-*.exe
windows_clang_msvc:
name: "Windows Clang"
runs-on: windows-latest
needs: clang-format
if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'
env:
VCPKG_ROOT: ${{github.workspace}}/vcpkg
VCPKG_DEFAULT_BINARY_CACHE: ${{github.workspace}}/vcpkg/bincache
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: lukka/run-vcpkg@v11
name: Install dependencies
with:
vcpkgGitCommitId: 3508985146f1b1d248c67ead13f8f54be5b4f5da
- name: Configure
run: cmake -S . -B build --preset "windows-debug"
- name: Building
run: cmake --build build --config Debug
#- name: Test
# run: cmake --build build --target test
os_x:
name: "macOS"
runs-on: macos-latest
needs: clang-format
env:
VCPKG_BUILD_TYPE: release
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install build tools
run: |
brew update
# Remove the bloat installed by default to avoid conflicts
brew remove --force $(brew list)
# Make sure to overwrite existing symlinks
brew install --overwrite \
cmake \
create-dmg \
gettext \
ninja \
pkg-config
brew link gettext --force
- uses: actions/setup-python@v5 # Workaround for #2069
with:
python-version: '3.11'
- uses: lukka/run-vcpkg@v11
name: Install dependencies
with:
vcpkgGitCommitId: 3508985146f1b1d248c67ead13f8f54be5b4f5da
- name: Build
uses: lukka/run-cmake@v10
with:
configurePreset: 'fullrelease-macos'
buildPreset: 'fullrelease-macos'
- name: Test
run: |
cmake --build build* --target test
- name: Split Branch Name
env:
BRANCH: ${{github.ref_name}}
id: split
run: echo "fragment=${BRANCH##*/}" >> $GITHUB_OUTPUT
- name: Create App Bundle
run: |
mkdir -p Freeciv21.app/Contents/MacOS Freeciv21.app/Contents/Resources
cp dist/Info.plist Freeciv21.app/Contents/
cp -r .install/share/freeciv21/* Freeciv21.app/Contents/Resources
cp .install/bin/freeciv21-* Freeciv21.app/Contents/MacOS
mkdir client.iconset
cp data/icons/16x16/freeciv21-client.png client.iconset/icon_16x16.png
cp data/icons/32x32/freeciv21-client.png client.iconset/[email protected]
cp data/icons/32x32/freeciv21-client.png client.iconset/icon_32x32.png
cp data/icons/64x64/freeciv21-client.png client.iconset/[email protected]
cp data/icons/128x128/freeciv21-client.png client.iconset/icon_128x128.png
iconutil -c icns client.iconset
cp client.icns Freeciv21.app/Contents/Resources
mkdir staging
mv Freeciv21.app staging
create-dmg \
--hdiutil-verbose \
--volname "Freeciv21 Installer" \
--volicon "client.icns" \
--window-pos 200 120 \
--window-size 800 400 \
--icon-size 100 \
--icon "Freeciv21.app" 200 190 \
--hide-extension "Freeciv21.app" \
--app-drop-link 600 185 \
"Freeciv21-${{steps.split.outputs.fragment}}.dmg" \
"staging/"
shasum -a 256 Freeciv21-${{steps.split.outputs.fragment}}.dmg > Freeciv21-${{steps.split.outputs.fragment}}.dmg.sha256
- name: Upload package
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
Freeciv21-*.dmg
Freeciv21-*.dmg.sha256
- name: Upload a build
uses: actions/upload-artifact@v4
with:
name: macOS-dmg
path: Freeciv21-*.dmg
fedora:
runs-on: ubuntu-latest
if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'
container: fedora:latest
steps:
- name: Install dependencies
run: |
sudo dnf install -y \
git \
cmake \
ninja-build \
python \
gettext \
qt5-qtbase-devel \
qt5-qtsvg-devel \
kf5-karchive-devel \
lua-devel \
sqlite-devel \
SDL2_mixer-devel \
readline-devel \
zlib-devel \
libunwind-devel \
elfutils-libs
- uses: actions/checkout@v4
- name: Configure
# Set ALWAYS_ROOT because the container user is root and creating an
# unpriviledged user would be too much work.
run: |
cmake . -B build -G Ninja \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_INSTALL_PREFIX=/usr \
-DALWAYS_ROOT=YES
- name: Build
run: |
cmake --build build
- name: Test
run: |
cmake --build build --target test
- name: Install
run: |
DESTDIR=$PWD/build/install cmake --build build --target install
freebsd:
runs-on: ubuntu-latest
if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'
steps:
- uses: actions/checkout@v4
# This has to be executed in a single step because freebsd-vm fails if run
# twice.
- name: Build, test, and install on FreeBSD
uses: vmactions/freebsd-vm@v1
with:
# qmake is required by /usr/local/lib/cmake/Qt5Core/Qt5CoreConfig.cmake
run: |
set -e
pkg install -y \
git \
cmake \
ninja \
gettext \
qt5-buildtools \
qt5-qmake \
qt5-network \
qt5-svg \
qt5-testlib \
qt5-widgets \
kf5-karchive \
lua53 \
sqlite3 \
sdl2_mixer \
readline \
zlib-ng \
libunwind \
elfutils
# Create an unpriviledged user to run tests as, otherwise the server
# refuses to start (and rightfully so)
pw user add -n action -m
# Create a script with the commands to run
cat >build-and-test.sh <<EOF
cmake -B build -G Ninja \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_INSTALL_PREFIX=/usr
cmake --build build
cmake --build build --target test
DESTDIR=$PWD/build/install cmake --build build --target install
EOF
chmod +x build-and-test.sh
su action -c 'sh build-and-test.sh'
nix:
runs-on: ubuntu-latest
if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'
steps:
- name: checkout
uses: actions/checkout@v4
- uses: cachix/install-nix-action@v22
- run: nix flake check
# TODO: We can add the build to a cache for others (see cachix.org)
# It's free for FOSS.
- run: nix build .#freeciv21
wasm:
name: "WebAssembly"
runs-on: ubuntu-latest
if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'
needs: clang-format
env:
QT_VERSION: v5.15.8-lts-lgpl
steps:
- uses: actions/checkout@v4
- name: Cache Qt build
id: qtcache
uses: actions/cache@v4
with:
path: ~/qt
key: qt-wasm-${{ env.QT_VERSION }}-svg-socket-v2
- name: Install build tools
run: |
sudo apt-get update
sudo apt-get install \
cmake \
ninja-build \
clang \
python3 \
gettext
- uses: actions/checkout@v4
name: Checkout emsdk
with:
repository: emscripten-core/emsdk
path: emsdk
- name: Install emsdk
run: |
cd emsdk
./emsdk install latest
./emsdk activate latest
touch prime.c
source emsdk_env.sh
emcc -sUSE_ZLIB=1 -sUSE_SDL=2 -sUSE_SDL_MIXER=2 prime.c -o prime.o
ln -s libSDL2_mixer_ogg.a upstream/emscripten/cache/sysroot/lib/wasm32-emscripten/libSDL2_mixer.a
- name: Install lua
run: |
source emsdk/emsdk_env.sh
wget https://www.lua.org/ftp/lua-5.4.3.tar.gz
tar xf lua-5.4.3.tar.gz
cp dist/wasm/lua.CMakeLists.txt lua-5.4.3/CMakeLists.txt
cd lua-5.4.3
emcmake cmake .
emmake make install
- uses: actions/checkout@v4
if: steps.qtcache.outputs.cache-hit != 'true'
name: Checkout qtbase
with:
repository: qt/qtbase
ref: ${{ env.QT_VERSION }}
path: qtbase
- name: Build Qt
if: steps.qtcache.outputs.cache-hit != 'true'
run: |
source emsdk/emsdk_env.sh
cd qtbase
git config --global user.email "[email protected]"
git config --global user.name "root"
git fetch origin 76d12eea2252c5e537dff15b103bdc1f925cf760
git cherry-pick 76d12eea2252c5e537dff15b103bdc1f925cf760
./configure -xplatform wasm-emscripten -opensource -confirm-license -prefix ~/qt -nomake examples
make install
- uses: actions/checkout@v4
if: steps.qtcache.outputs.cache-hit != 'true'
name: Checkout qtsvg
with:
repository: qt/qtsvg
ref: ${{ env.QT_VERSION }}
path: qtsvg
- name: Build QtSvg
if: steps.qtcache.outputs.cache-hit != 'true'
run: |
source emsdk/emsdk_env.sh
cd qtsvg
~/qt/bin/qmake
make install
- uses: actions/checkout@v4
name: Checkout zstd
with:
repository: facebook/zstd
ref: v1.5.0
path: zstd
- name: Build zstd
run: |
source emsdk/emsdk_env.sh
cd zstd
mkdir bld
emcmake cmake build/cmake -DZSTD_BUILD_PROGRAMS=0 -DZSTD_BUILD_SHARED=0
emmake make install
- uses: actions/checkout@v4
name: Checkout extra-cmake-modules
with:
repository: KDE/extra-cmake-modules
ref: v5.96.0
path: ecm
- name: Install ecm
run: |
cd ecm
cmake .
sudo make install
- uses: actions/checkout@v4
name: Checkout karchive
with:
repository: KDE/karchive
ref: v5.96.0
path: karchive
- name: Install karchive
run: |
source emsdk/emsdk_env.sh
cd karchive
git apply ../dist/wasm/karchive.diff
emcmake cmake . \
-DECM_DIR=/usr/local/share/ECM/cmake -DBUILD_TESTING=0 \
-DQt5Core_DIR=$HOME/qt/lib/cmake/Qt5Core \
-DKF_IGNORE_PLATFORM_CHECK=1 \
-DCMAKE_INSTALL_PREFIX=../emsdk/upstream/emscripten/cache/sysroot
emmake make install
- name: Build Freeciv
run: |
source emsdk/emsdk_env.sh
ls $HOME/qt/lib/cmake/Qt5
emcmake cmake . \
-DCMAKE_BUILD_TYPE=Release \
-DQt5_DIR=$HOME/qt/lib/cmake/Qt5 \
-DQt5Svg_DIR=$HOME/qt/lib/cmake/Qt5Svg \
-DQt5Gui_DIR=$HOME/qt/lib/cmake/Qt5Gui \
-DQt5Core_DIR=$HOME/qt/lib/cmake/Qt5Core \
-DQt5Network_DIR=$HOME/qt/lib/cmake/Qt5Network \
-DFREECIV_ENABLE_SERVER=0 \
-DLUA_MATH_LIBRARY=emsdk/upstream/emscripten/cache/sysroot/lib/wasm32-emscripten/libc.a \
-DQt5Widgets_DIR=$HOME/qt/lib/cmake/Qt5Widgets \
-DQt5EventDispatcherSupport_DIR=$HOME/qt/lib/cmake/Qt5EventDispatcherSupport \
-DQt5FontDatabaseSupport_DIR=$HOME/qt/lib/cmake/Qt5FontDatabaseSupport \
-DQt5EglSupport_DIR=$HOME/qt/lib/cmake/Qt5EglSupport \
-DFREECIV_ENABLE_FCMP_CLI=0 -DFREECIV_ENABLE_FCMP_QT=0 \
-DFREECIV_BUILD_LIBSERVER=0 -DFREECIV_ENABLE_RULEUP=0 \
-DFREECIV_ENABLE_RULEDIT=0 -DFREECIV_ENABLE_CIVMANUAL=0 \
-DKF5Archive_DIR=../emsdk/upstream/emscripten/cache/sysroot/lib/cmake \
-DCAN_UNWIND_STACK=0
VERBOSE=1 emmake make
- name: Debug
if: failure()
run: |
cat common/networking/CMakeFiles/networking.dir/includes_CXX.rsp
cat CMakeCache.txt
- uses: actions/upload-artifact@v4
if: failure()
with:
name: cmakecache
path: CMakeCache.txt
- name: Archive production artifacts
uses: actions/upload-artifact@v4
with:
name: wasm-client
path: freeciv21-client.*
snapcraft:
name: "Snap Package"
runs-on: ubuntu-latest
if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install \
cmake \
ninja-build \
gettext \
qtbase5-dev \
libqt5svg5-dev \
libkf5archive-dev \
liblua5.3-dev \
libsqlite3-dev \
libsdl2-mixer-dev
- name: Configure
run: |
mkdir -p build/snap/local
cmake . -B build -G Ninja
cp data/icons/128x128/freeciv21-client.png build/snap/local
- uses: snapcore/action-build@v1
id: snapcraft
with:
path: build
- name: Upload a build
uses: actions/upload-artifact@v4
with:
name: snap
path: ${{ steps.snapcraft.outputs.snap }}
clang-format:
name: clang-format Code Formatter
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Run clang-format style check for C/C++
uses: jidicula/[email protected]
with:
clang-format-version: '11'
exclude-regex: 'dependencies'