-
Notifications
You must be signed in to change notification settings - Fork 9
317 lines (303 loc) · 11.6 KB
/
build.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
---
name: Build and Test
on:
workflow_dispatch:
push:
branches: [ main ]
paths:
- '**.h'
- '**.c'
- '**.hpp'
- '**.cpp'
- '**.y'
- '**.l'
- '**.sh'
- '**.cmake'
- '**CMakeLists.txt'
pull_request:
branches: [ main ]
paths:
- '**.h'
- '**.c'
- '**.hpp'
- '**.cpp'
- '**.y'
- '**.l'
- '**.sh'
- '**.cmake'
- '**.xml'
- '**CMakeLists.txt'
jobs:
formatting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Get clang-format-11
run: |
echo 'debconf debconf/frontend select Noninteractive' | sudo debconf-set-selections
echo 'DPkg::Use-Pty "false";' | sudo tee -a /etc/apt/apt.conf.d/98-quiet
echo 'DPkg::Progress-Fancy "false";' | sudo tee -a /etc/apt/apt.conf.d/98-quiet
sudo apt-get -qq update
sudo apt-get -qq install clang-format-11
- name: Formatting
run: find src include test -iregex '.*\.\(c\|h\|cpp\|hpp\|cc\|hh\|cxx\|hxx\)$' -exec clang-format-11 -n -Werror {} \;
linux-x86_64:
needs: [ formatting ]
strategy:
fail-fast: false
runs-on: ubuntu-latest
env:
CCACHE_DIR: ${{ github.workspace }}/CCACHE
BUILD_DIR: build-linux64-gcc13
CTEST_OUTPUT_ON_FAILURE: 1
CMAKE_BUILD_TYPE: Debug
CMAKE_TOOLCHAIN_FILE: ${{ github.workspace }}/cmake/toolchain/linux64-gcc13.cmake
CMAKE_PREFIX_PATH: ${{ github.workspace }}/local/linux64-gcc13
CMAKE_GENERATOR: Ninja
steps:
- uses: actions/checkout@v4
- name: Get Ubuntu dependencies
run: |
echo 'debconf debconf/frontend select Noninteractive' | sudo debconf-set-selections
echo 'DPkg::Use-Pty "false";' | sudo tee -a /etc/apt/apt.conf.d/98-quiet
echo 'DPkg::Progress-Fancy "false";' | sudo tee -a /etc/apt/apt.conf.d/98-quiet
sudo apt-get -qq update
sudo apt-get -qq install bison curl wget unzip xz-utils cmake ninja-build flex ccache g++-13
- name: Compute CCache keys
id: linux64-keys
run: |
key2=ccache-linux64-
key1="${key2}$(date +%W)"
echo "key1=${key1}" >> $GITHUB_OUTPUT
echo "key2=${key2}" >> $GITHUB_OUTPUT
- name: Restore CCache
id: ccache-restore
uses: actions/cache@v4
with:
path: ${{ env.CCACHE_DIR }}
key: ${{ steps.linux64-keys.outputs.key1 }}
restore-keys: ${{ steps.linux64-keys.outputs.key2 }}
- name: CCache limits and stats
run: |
ccache -M120M
ccache --show-stats
- name: Restore Libs
id: restore-libs
uses: actions/cache/restore@v4
with:
path: local/linux64-gcc13
key: libs-linux64-gcc13-${{ hashFiles('getlibs/**') }}
restore-keys: libs-linux64-gcc13-
- name: Get library dependencies
if: steps.restore-libs.outputs.cache-hit != 'true'
run: ./getlibs/getlibs.sh linux64-gcc13
- name: Save Libs
if: steps.restore-libs.outputs.cache-hit != 'true'
id: save-libs
uses: actions/cache/save@v4
with:
path: local/linux64-gcc13
key: ${{ steps.restore-libs.outputs.cache-primary-key }}
- name: Configure CMake build system
run: cmake -B "$BUILD_DIR" -DCMAKE_PREFIX_PATH=$PWD/local/linux64-gcc13 -DCMAKE_TOOLCHAIN_FILE=$PWD/cmake/toolchain/linux64-gcc13.cmake -DCMAKE_BUILD_TYPE=$CMAKE_BUILD_TYPE -DSSP=ON -DUBSAN=ON -DASAN=ON -DLSAN=ON
- name: Build
run: cmake --build "$BUILD_DIR" --config $CMAKE_BUILD_TYPE
- name: Test
run: ctest --test-dir "$BUILD_DIR" -C $CMAKE_BUILD_TYPE
- name: CCache Statistics
run: ccache --show-stats
windows-x86_64:
needs: [ formatting ]
strategy:
fail-fast: false
runs-on: ubuntu-latest
env:
CCACHE_DIR: ${{ github.workspace }}/CCACHE
BUILD_DIR: build-win64
CTEST_OUTPUT_ON_FAILURE: 1
CROSSCOMPILING_EMULATOR: wine
CMAKE_BUILD_TYPE: Debug
CMAKE_TOOLCHAIN_FILE: ${{ github.workspace }}/cmake/toolchain/win64.cmake
CMAKE_PREFIX_PATH: ${{ github.workspace }}/local/win64
CMAKE_GENERATOR: Ninja
steps:
- uses: actions/checkout@v4
- name: Get Ubuntu dependencies
run: |
echo 'debconf debconf/frontend select Noninteractive' | sudo debconf-set-selections
echo 'DPkg::Use-Pty "false";' | sudo tee -a /etc/apt/apt.conf.d/98-quiet
echo 'DPkg::Progress-Fancy "false";' | sudo tee -a /etc/apt/apt.conf.d/98-quiet
sudo apt-get -qq update
sudo apt-get -qq install bison curl wget unzip xz-utils cmake ninja-build flex ccache g++-mingw-w64-x86-64-posix wine
sudo update-alternatives --set x86_64-w64-mingw32-gcc /usr/bin/x86_64-w64-mingw32-gcc-posix
sudo update-alternatives --set x86_64-w64-mingw32-g++ /usr/bin/x86_64-w64-mingw32-g++-posix
- name: Setup Wine
run: |
sudo apt-get -qq install wine-binfmt
sudo update-binfmts --disable cli # disable mono attempts to execute windows binaries
sudo update-binfmts --import /usr/share/binfmts/wine # enable wine to execute windows binaries
echo "WINARCH=win64" >> $GITHUB_ENV
echo "WINEDEBUG=fixme-all,-all" >> $GITHUB_ENV
echo "WINEPATH=\"$(./winepath-for x86_64-w64-mingw32)\"" >> $GITHUB_ENV
- name: Compute CCache keys
id: win64-keys
run: |
key2=ccache-win64-
key1="${key2}$(date +%W)"
echo "key1=${key1}" >> $GITHUB_OUTPUT
echo "key2=${key2}" >> $GITHUB_OUTPUT
- name: Restore CCache
id: ccache-restore
uses: actions/cache@v4
with:
path: ${{ env.CCACHE_DIR }}
key: ${{ steps.win64-keys.outputs.key1 }}
restore-keys: ${{ steps.win64-keys.outputs.key2 }}
- name: CCache limits and stats
run: |
ccache -M120M
ccache --show-stats
- name: Restore Libs
id: restore-libs
uses: actions/cache/restore@v4
with:
path: local/win64
key: libs-win64-${{ hashFiles('getlibs/**') }}
restore-keys: libs-win64-
- name: Get library dependencies
if: steps.restore-libs.outputs.cache-hit != 'true'
run: |
echo "steps.restore-libs.outputs.cache-primary-key: ${{ steps.restore-libs.outputs.cache-primary-key }}"
echo "steps.restore-libs.outputs.cache-matched-key: ${{ steps.restore-libs.outputs.cache-matched-key }}"
./getlibs/getlibs.sh win64
- name: Save Libs
if: steps.restore-libs.outputs.cache-hit != 'true'
id: save-libs
uses: actions/cache/save@v4
with:
path: local/win64
key: ${{ steps.restore-libs.outputs.cache-primary-key }}
- name: Configure CMake build system
run: cmake -B "$BUILD_DIR" -DCMAKE_PREFIX_PATH=$PWD/local/win64 -DCMAKE_TOOLCHAIN_FILE=$PWD/cmake/toolchain/win64.cmake -DCMAKE_BUILD_TYPE=$CMAKE_BUILD_TYPE -DSSP=ON
- name: Build
run: cmake --build "$BUILD_DIR" --config $CMAKE_BUILD_TYPE
- name: Test
run: ctest --test-dir "$BUILD_DIR" -C $CMAKE_BUILD_TYPE
- name: CCache Statistics
run: ccache --show-stats
darwin-brew-gcc13:
needs: [ formatting ]
strategy:
fail-fast: false
runs-on: macos-13
# see https://github.com/actions/runner-images/blob/main/images/macos/macos-13-Readme.md
env:
CCACHE_DIR: ${{ github.workspace }}/CCACHE
BUILD_DIR: build-darwin-brew-gcc13
CTEST_OUTPUT_ON_FAILURE: 1
CMAKE_BUILD_TYPE: Debug
CMAKE_TOOLCHAIN_FILE: ${{ github.workspace }}/cmake/toolchain/darwin-brew-gcc13.cmake
CMAKE_PREFIX_PATH: ${{ github.workspace }}/local/darwin-brew-gcc13
CMAKE_GENERATOR: Ninja
steps:
- uses: actions/checkout@v4
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '14.3.1'
- name: Get Home Brew dependencies
run: brew install -q cmake ninja ccache gcc@10 flex bison wget curl coreutils automake autoconf libtool gnu-sed gawk
- name: Compute CCache keys
id: darwin-keys
run: |
key2=ccache-darwin-brew-gcc13-
key1="${key2}$(date +%W)"
echo "key1=${key1}" >> $GITHUB_OUTPUT
echo "key2=${key2}" >> $GITHUB_OUTPUT
- name: Restore CCache
id: ccache-restore
uses: actions/cache@v4
with:
path: ${{ env.CCACHE_DIR }}
key: ${{ steps.darwin-keys.outputs.key1 }}
restore-keys: ${{ steps.darwin-keys.outputs.key2 }}
- name: CCache Limits and Stats
run: |
ccache -M120M
ccache --show-stats
- name: Restore Libs
id: restore-libs
uses: actions/cache/restore@v4
with:
path: local/darwin-brew-gcc13
key: libs-darwin-brew-gcc13-${{ hashFiles('getlibs/**') }}
restore-keys: libs-darwin-brew-gcc13
- name: Get library dependencies
if: steps.restore-libs.outputs.cache-hit != 'true'
run: ./getlibs/getlibs.sh darwin-brew-gcc13
- name: Store Libs Cache
if: steps.restore-libs.outputs.cache-hit != 'true'
id: save-libs
uses: actions/cache/save@v4
with:
path: local/darwin-brew-gcc13
key: ${{ steps.restore-libs.outputs.cache-primary-key }}
- name: Configure CMake build system
run: cmake -B "$BUILD_DIR" -DCMAKE_PREFIX_PATH=$PWD/local/darwin-brew-gcc13 -DCMAKE_TOOLCHAIN_FILE=$PWD/cmake/toolchain/darwin-brew-gcc13.cmake -DCMAKE_BUILD_TYPE=$CMAKE_BUILD_TYPE -DSSP=ON
- name: Build
run: cmake --build "$BUILD_DIR" --config $CMAKE_BUILD_TYPE
- name: Test
run: ctest --test-dir "$BUILD_DIR" -C $CMAKE_BUILD_TYPE
- name: CCache Statistics
run: ccache --show-stats
# build-nix:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - uses: cachix/install-nix-action@v15
# with:
# nix_path: nixpkgs=channel:nixos-unstable
# - name: Build and test
# run: nix build
# build-nix-mac:
# runs-on: macos-latest
# steps:
# - uses: actions/checkout@v4
# - uses: cachix/install-nix-action@v15
# with:
# nix_path: nixpkgs=channel:nixos-unstable
# - name: Build and test
# run: nix build
# build-nix-cross:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - uses: cachix/install-nix-action@v15
# with:
# nix_path: nixpkgs=channel:nixos-unstable
# - name: Build and test
# run: nix build .\#utapWindows.x86_64-linux
# build-linux64:
# needs: [ format ]
# strategy:
# fail-fast: false
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - name: Set default environment variables
# run: |
# echo "DEBIAN_FRONTEND=noninteractive" >> "$GITHUB_ENV"
# echo "BUILD_DIR=build-linux64-gcc13" >> "$GITHUB_ENV"
# echo "CROSSCOMPILING_EMULATOR=wine" >> "$GITHUB_ENV"
# echo "CTEST_OUTPUT_ON_FAILURE=1" >> "$GITHUB_ENV"
# - name: Get Ubuntu dependencies
# run: |
# sudo apt-get -qy update
# sudo apt-get -qy install bison curl wget unzip xz-utils cmake ninja-build flex libc6-dev g++-13
# - name: Get library dependencies
# run: ./getlibs/getlibs.sh linux64-gcc13
# - name: Configure CMake build system
# run: cmake -DCMAKE_TOOLCHAIN_FILE=$PWD/cmake/toolchain/linux64-gcc13.cmake -DCMAKE_PREFIX_PATH=$PWD/local/linux64-gcc13 -DCMAKE_BUILD_TYPE=Debug -DUBSAN=ON -DASAN=ON -B $BUILD_DIR -S . -G Ninja
# - name: Build
# run: cmake --build $BUILD_DIR
# - name: Test
# run: (cd $BUILD_DIR ; ctest)