-
Notifications
You must be signed in to change notification settings - Fork 40
287 lines (247 loc) · 8.87 KB
/
build.yml
File metadata and controls
287 lines (247 loc) · 8.87 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
name: Build
on:
push:
pull_request_target:
jobs:
build:
# This is a *private* build container.
# See docs/github_actions.md for more information.
container: ghcr.io/bfbbdecomp/bfbb-build:main
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
# Add game versions here
version: [GQPE78]
steps:
# Checkout the repository (Push)
- name: Checkout
if: ${{ github.event_name == 'push' }}
uses: actions/checkout@v4
with:
submodules: recursive
ref: ${{ github.event.push.head.sha }}
# Checkout the repository (PR from forked repo)
- name: Checkout
if: ${{ github.event_name == 'pull_request_target'}}
uses: actions/checkout@v4
with:
submodules: recursive
ref: ${{ github.event.pull_request.head.sha }}
repository: ${{github.event.pull_request.head.repo.full_name}}
# Set Git config
- name: Git config
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
# Copy the original files to the workspace
- name: Prepare
run: cp -R /orig .
# Build the project
- name: Build
run: |
python configure.py --map --version ${{ matrix.version }} \
--binutils /binutils --compilers /compilers
ninja all_source build/${{ matrix.version }}/progress.json \
build/${{ matrix.version }}/report.json
git log -1 --pretty='{"id": "%H", "email": "%ae", "time": "%ad", "message": "%s"}' \
--date=format:"%Y-%m-%dT%H:%M:%S" > build/${{ matrix.version }}/progress-commit.json
# Upload map files
- name: Upload map
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.version }}_maps
path: build/${{ matrix.version }}/**/*.MAP
# Upload progress report
- name: Upload report
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.version }}_report
path: |
build/${{ matrix.version }}/report.json
build/${{ matrix.version }}/progress-commit.json
build-non-matching:
# This is a *private* build container.
# See docs/github_actions.md for more information.
container: ghcr.io/bfbbdecomp/bfbb-build:main
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
# Add game versions here
version: [GQPE78]
steps:
# Checkout the repository (Push)
- name: Checkout
if: ${{ github.event_name == 'push' }}
uses: actions/checkout@v4
with:
submodules: recursive
ref: ${{ github.event.push.head.sha }}
# Checkout the repository (PR from forked repo)
- name: Checkout
if: ${{ github.event_name == 'pull_request_target'}}
uses: actions/checkout@v4
with:
submodules: recursive
ref: ${{ github.event.pull_request.head.sha }}
repository: ${{github.event.pull_request.head.repo.full_name}}
# Set Git config
- name: Git config
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
# Copy the original files to the workspace
- name: Prepare
run: cp -R /orig .
# Build and link non-matching files to verify lack of errors
- name: Build non-matching
run: |
python configure.py --non-matching \
--version ${{ matrix.version }} \
--binutils /binutils --compilers /compilers
ninja
build-previous:
# This is a *private* build container.
# See docs/github_actions.md for more information.
container: ghcr.io/bfbbdecomp/bfbb-build:main
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
# Add game versions here
version: [GQPE78]
steps:
# Checkout the repository
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 2
submodules: recursive
# Set Git config
- name: Git config
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
# Copy the original files to the workspace
- name: Prepare
run: cp -R /orig .
# Checkout the commit to generate OK bot report used for website build
- name: Checkout previous report repo state
if: ${{ github.event_name == 'push' }}
run: |
git checkout HEAD^
# Checkout the commit to generate CI progress report for PR comment report
- name: Checkout previous report repo state
if: ${{ github.event_name == 'pull_request_target' }}
run: |
git checkout main
# Generate report for previous repo state
- name: Generate previous report
run: |
python configure.py --version ${{ matrix.version }} \
--binutils /binutils --compilers /compilers
ninja build/${{ matrix.version }}/report.json
# Upload previous report
- name: Upload previous report
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.version }}_previous
path: build/${{ matrix.version }}/report.json
website:
runs-on: ubuntu-latest
permissions:
contents: write
needs:
- build
- build-previous
if: github.ref == 'refs/heads/main' && github.event_name != 'pull_request' && github.event_name != 'pull_request_target'
steps:
- name: Checkout website code
uses: actions/checkout@v4
with:
repository: bfbbdecomp/website
- name: Download Progress Artifacts
uses: actions/download-artifact@v4
with:
path: ./artifacts
- name: Rename Artifacts
run: |
mv artifacts/GQPE78_report/report.json artifacts/progress.json
mv artifacts/GQPE78_report/progress-commit.json artifacts/progress-commit.json
mv artifacts/GQPE78_previous/report.json artifacts/previous.json
- uses: actions/setup-dotnet@v4
with:
dotnet-version: "8.x.x"
- name: Build Website
env:
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
GEMINI_API_KEY: ${{ secrets.GEMINI_API_KEY }}
run: |
python build.py
- name: Deploy Website
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: dist # The folder the action should deploy.
clean: true
single-commit: true
- name: Commit Changes
continue-on-error: true
run: |
git status
git pull origin main
git config --global user.name "BFBB Actions Bot"
git config --global user.email "actions@github.com"
git add .
git commit -m "automated commit cache update"
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.WEBSITE_TOKEN }}
repository: bfbbdecomp/website
branch: ${{ github.ref }}
pr-comment:
runs-on: ubuntu-latest
needs:
- build
- build-previous
if: github.event_name == 'pull_request_target'
permissions:
pull-requests: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Download Progress Artifacts
uses: actions/download-artifact@v4
with:
path: ./artifacts
- name: Rename Artifacts
run: |
mv artifacts/GQPE78_report/report.json artifacts/progress.json
mv artifacts/GQPE78_report/progress-commit.json artifacts/progress-commit.json
mv artifacts/GQPE78_previous/report.json artifacts/previous.json
- name: Download OK bot
id: download-ok
run: |
python ./tools/download_tool.py objdiff-cli objdiff --tag v3.3.1
python ./tools/download_tool.py OK ok --tag v0.2.0
- name: Run OK command
id: ok-command
run: |
./objdiff report changes artifacts/previous.json artifacts/progress.json -o artifacts/changes.json
./ok --changes artifacts/changes.json pr > pr.txt
cat pr.txt
- name: Verify OK Bot Comment is Not Empty
id: comment_file_check
run: |
FILE_PATH="pr.txt"
echo "===== pr.txt contents (debug) ====="
sed -n '1,200p' "$FILE_PATH" || true
echo "===== end debug ====="
# Consider the file empty if it has zero bytes OR only whitespace/newlines.
if [ -s "$FILE_PATH" ] && grep -q '[^[:space:]]' "$FILE_PATH"; then
echo "file_empty=false" >> $GITHUB_OUTPUT
else
echo "file_empty=true" >> $GITHUB_OUTPUT
fi
- name: PR comment with file
if: ${{ steps.comment_file_check.outputs.file_empty == 'false' }}
uses: thollander/actions-comment-pull-request@v3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
file-path: pr.txt