forked from isledecomp/racers
-
Notifications
You must be signed in to change notification settings - Fork 0
291 lines (244 loc) · 7.81 KB
/
Copy pathbuild.yml
File metadata and controls
291 lines (244 loc) · 7.81 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
name: Build
on: [push, pull_request]
jobs:
fetch-deps:
name: Download original binaries
uses: ./.github/workflows/racersbin.yml
build-current-toolchain:
name: Current MSVC
runs-on: windows-latest
steps:
- uses: actions/checkout@v6
- name: Setup cmake
uses: jwlawson/actions-setup-cmake@v2
- name: Setup ninja
uses: ashutoshvarma/setup-ninja@master
- name: Setup vcvars
uses: ilammy/msvc-dev-cmd@v1
with:
arch: amd64_x86
- name: Install LLVM
uses: KyleMayes/install-llvm-action@v2
with:
version: '21'
- name: Build
run: |
cmake -S . -B build -GNinja `
-DCMAKE_CXX_COMPILER=cl `
-DCMAKE_BUILD_TYPE=Debug `
-DENABLE_CLANG_TIDY=ON `
-Werror=dev
cmake --build build -- -k0
build:
name: 'MSVC 6.0'
runs-on: windows-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v6
with:
repository: isledecomp/MSVC600-8168
path: msvc600
- uses: actions/checkout@v6
with:
repository: isledecomp/MSVC600-8447
path: msvc600sp3
- name: Setup cmake
uses: jwlawson/actions-setup-cmake@v2
with:
cmake-version: '3.25.x'
- name: Build
shell: cmd
run: |
call .\msvc600\VC98\Bin\VCVARS32.BAT x86
cmake "-DMSVC_CRT_SRC_PATH=${{github.workspace}}/msvc600sp3/VC98/crt/src" -B build -DCMAKE_BUILD_TYPE=RelWithDebInfo -G "NMake Makefiles"
cmake --build build
- name: Upload Artifact
uses: actions/upload-artifact@main
with:
name: Win32
path: |
build/LEGORacers.exe
build/LEGORacers.pdb
build/GolDP.dll
build/GolDP.pdb
verify:
name: Verify decomp
needs: [build, fetch-deps]
runs-on: windows-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: '3.12'
- uses: actions/download-artifact@v8
with:
name: Win32
path: build
- name: Restore cached original binaries
id: cache-original-binaries
uses: actions/cache/restore@v5
with:
enableCrossOsArchive: true
path: racersbin
key: racersbin
- name: Install python packages
shell: bash
run: |
pip install -r tools/requirements.txt
- name: Detect binaries
id: detection
run: |
reccmp-project detect --what original --search-path racersbin
reccmp-project detect --what recompiled --search-path build
- name: Summarize Accuracy
shell: bash
run: |
reccmp-reccmp -S LEGORACERSPROGRESS.SVG --svg-icon assets/legoracers.png --target LEGORACERS --total 3986 --json LEGORACERSPROGRESS.json --html LEGORACERSPROGRESS.HTML
reccmp-reccmp -S GOLDPPROGRESS.SVG --svg-icon assets/goldp.png --target GOLDP --total 1071 --json GOLDPPROGRESS.json --html GOLDPPROGRESS.HTML
- name: Compare Accuracy With Current Master
shell: bash
env:
RELEASE_URL: https://github.com/isledecomp/racers/releases/download/continuous
run: |
curl -fLSs -o LEGORACERSPROGRESS-old.json $RELEASE_URL/LEGORACERSPROGRESS.json || echo "" >LEGORACERSPROGRESS-old.json
curl -fLSs -o GOLDPPROGRESS-old.json $RELEASE_URL/GOLDPPROGRESS.json || echo "" >GOLDPPROGRESS-old.json
reccmp-reccmp --target LEGORACERS --diff LEGORACERSPROGRESS-old.json || echo "Current master not found"
reccmp-reccmp --target GOLDP --diff GOLDPPROGRESS-old.json || echo "Current master not found"
- name: Check Vtables
if: ${{ steps.detection.conclusion == 'success' && always() }}
shell: bash
run: |
reccmp-vtable --target LEGORACERS
reccmp-vtable --target GOLDP
- name: Check Variables
if: ${{ steps.detection.conclusion == 'success' && always() }}
shell: bash
run: |
reccmp-datacmp --target LEGORACERS
reccmp-datacmp --target GOLDP
- name: Check Folding
if: ${{ steps.detection.conclusion == 'success' && always() }}
shell: bash
run: |
python tools/check_folded.py --target LEGORACERS
python tools/check_folded.py --target GOLDP
- name: Upload Artifact
uses: actions/upload-artifact@main
with:
name: Accuracy Report
path: |
LEGORACERSPROGRESS*
GOLDPPROGRESS*
upload:
name: Upload artifacts
needs: [verify]
runs-on: ubuntu-latest
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' && github.repository == 'isledecomp/racers' }}
permissions:
contents: write
pages: write
id-token: write
steps:
- uses: actions/checkout@v6
with:
repository: probonopd/uploadtool
- uses: actions/download-artifact@v8
with:
name: Win32
path: build
- uses: actions/download-artifact@v8
with:
name: Accuracy Report
- name: Upload Continuous Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
./upload.sh \
build/LEGORacers.exe \
build/GolDP.dll \
LEGORACERSPROGRESS* \
GOLDPPROGRESS*
- name: Prepare Pages
run: |
mkdir -p progress
cp LEGORACERSPROGRESS.SVG progress/
cp GOLDPPROGRESS.SVG progress/
cp LEGORACERSPROGRESS.HTML progress/
cp GOLDPPROGRESS.HTML progress/
- uses: actions/upload-pages-artifact@v3
with:
path: progress/
- name: Deploy to GitHub Pages
uses: actions/deploy-pages@v5
decomplint:
name: ${{ matrix.module }} annotations
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- module: LEGORACERS
path: LEGORacers common
- module: GOLDP
path: GolDP common
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: '3.12'
- name: Install python libraries
id: install
run: |
pip install -r tools/requirements.txt
- name: Run decomplint
if: ${{ steps.install.conclusion == 'success' && always() }}
run: |
reccmp-decomplint ${{ matrix.path }} --module ${{ matrix.module }} --warnfail
- name: Check address padding
if: ${{ steps.install.conclusion == 'success' && always() }}
run: |
python tools/reccmp_addr_padding.py
clang-format:
name: c++ clang-format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Run clang-format
run: |
find LEGORacers GolDP common tools -iname '*.h' -o -iname '*.cpp' | xargs \
pipx run "clang-format>=22,<23" \
--style=file \
-i
git diff --color --exit-code
naming:
name: Naming conventions
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install LLVM and Clang
uses: KyleMayes/install-llvm-action@v2
with:
version: '21'
- uses: actions/setup-python@v6
with:
python-version: '3.12'
- name: Install python libraries
run: |
pip install clang==21.* pyyaml
- name: Run ncc
run: |
python3 tools/ncc/ncc.py \
--clang-lib ${{ env.LLVM_PATH }}/lib/libclang.so \
--recurse \
--style tools/ncc/ncc.style \
--skip tools/ncc/skip.yml \
--definition DEFINE_GUID PASCAL WINAPI FAR BOOL CALLBACK HWND__=HWND \
--include \
util \
LEGORacers/include \
LEGORacers \
GolDP/include \
GolDP \
common/include \
common \
--path LEGORacers GolDP common