-
Notifications
You must be signed in to change notification settings - Fork 120
439 lines (376 loc) · 16.2 KB
/
Copy pathbench.yml
File metadata and controls
439 lines (376 loc) · 16.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
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
name: Bench
on:
pull_request:
push:
branches:
- main
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: hashintel
TURBO_CACHE: remote:rw
VAULT_ADDR: ${{ secrets.VAULT_ADDR }}
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
optimize-ci: # Do not run benches in the middle of the stack
runs-on: ubuntu-24.04
name: Optimize CI
outputs:
skip: ${{ steps.check_skip.outputs.skip }}
steps:
- name: Optimize CI
id: check_skip
uses: withgraphite/graphite-ci-action@ee395f3a78254c006d11339669c6cabddf196f72
with:
graphite_token: ${{ secrets.GRAPHITE_CI_OPTIMIZER_TOKEN }}
setup:
needs: [optimize-ci]
if: needs.optimize-ci.outputs.skip == 'false'
runs-on: ubuntu-24.04
permissions:
id-token: write
outputs:
unit: ${{ steps.packages.outputs.unit }}
integration: ${{ steps.packages.outputs.integration }}
steps:
- name: Checkout source code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 2
- name: Install tools
uses: ./.github/actions/install-tools
with:
token: ${{ secrets.GITHUB_TOKEN }}
vault_address: ${{ secrets.VAULT_ADDR }}
rust: false
- name: Determine changed packages
id: packages
run: |
UNIT_BENCH_QUERY='query { affectedPackages(base: "HEAD^", filter: {has: {field: TASK_NAME, value: "bench:unit"}}) { items { name path } } }'
INTEGRATION_BENCH_QUERY='query { affectedPackages(base: "HEAD^", filter: {has: {field: TASK_NAME, value: "bench:integration"}}) { items { name path } } }'
UNIT_BENCH_PACKAGES=$(turbo query "$UNIT_BENCH_QUERY" \
| jq --compact-output '.data.affectedPackages.items | [(.[] | select(.name != "//"))] | { name: [.[].name], include: . }')
INTEGRATION_BENCH_PACKAGES=$(turbo query "$INTEGRATION_BENCH_QUERY" \
| jq --compact-output '.data.affectedPackages.items | [(.[] | select(.name != "//"))] | { name: [.[].name], include: . }')
echo "unit=$UNIT_BENCH_PACKAGES" | tee -a $GITHUB_OUTPUT
echo "integration=$INTEGRATION_BENCH_PACKAGES" | tee -a $GITHUB_OUTPUT
unit-benches:
name: Unit
needs: [setup]
permissions:
id-token: write
contents: read
strategy:
matrix: ${{ fromJSON(needs.setup.outputs.unit) }}
fail-fast: false
if: needs.setup.outputs.unit != '{"name":[],"include":[]}'
runs-on: ubuntu-24.04
steps:
- name: Checkout base branch
if: github.event_name == 'pull_request'
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
ref: ${{ github.event.pull_request.base.sha }}
- name: Clean up disk
if: github.event_name == 'pull_request'
uses: ./.github/actions/clean-up-disk
- name: Install tools
if: github.event_name == 'pull_request'
uses: ./.github/actions/install-tools
with:
token: ${{ secrets.GITHUB_TOKEN }}
vault_address: ${{ secrets.VAULT_ADDR }}
- name: Prune repository
if: github.event_name == 'pull_request'
uses: ./.github/actions/prune-repository
with:
scope: |
${{ matrix.name }}
@rust/hash-repo-chores
- name: Warm up repository
if: github.event_name == 'pull_request'
uses: ./.github/actions/warm-up-repo
- name: Run base benches
if: github.event_name == 'pull_request'
run: turbo run bench:unit --filter "${{ matrix.name }}"
- name: Checkout head branch
if: github.event_name == 'pull_request'
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
clean: false
ref: ${{ github.event.pull_request.head.sha }}
- name: Checkout
if: github.event_name != 'pull_request'
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Clean up disk
if: github.event_name != 'pull_request'
uses: ./.github/actions/clean-up-disk
- name: Install tools
uses: ./.github/actions/install-tools
with:
token: ${{ secrets.GITHUB_TOKEN }}
vault_address: ${{ secrets.VAULT_ADDR }}
- name: Prune repository
uses: ./.github/actions/prune-repository
with:
scope: |
${{ matrix.name }}
@rust/hash-repo-chores
- name: Warm up repository
uses: ./.github/actions/warm-up-repo
- name: Run head benches
run: turbo run bench:unit --filter "${{ matrix.name }}"
- name: Analyze benchmarks
if: github.event_name == 'pull_request'
run: |
TRIMMED_PACKAGE_NAME=$(echo "${{ matrix.name }}" | sed 's|@||g' | sed 's|/|.|g')
echo "TRIMMED_PACKAGE_NAME=$TRIMMED_PACKAGE_NAME" >> $GITHUB_ENV
echo '<details><summary><h2>${{ matrix.name }} – Units</h2></summary>' > "/tmp/$TRIMMED_PACKAGE_NAME.md"
echo >> "/tmp/$TRIMMED_PACKAGE_NAME.md"
turbo run analyze-benchmarks -- --output "/tmp/benches.md" --artifacts-path "$(pwd)/${{ matrix.path }}/out" --enforce-flame-graph
cat "/tmp/benches.md" >> "/tmp/$TRIMMED_PACKAGE_NAME.md"
echo '</details>' >> "/tmp/$TRIMMED_PACKAGE_NAME.md"
- name: Authenticate Vault
id: secrets
if: github.event.pull_request.head.repo.full_name == github.repository
uses: hashicorp/vault-action@4c06c5ccf5c0761b6029f56cfb1dcf5565918a3b # v3.4.0
with:
exportToken: true
url: ${{ env.VAULT_ADDR }}
method: jwt
role: dev
secrets: |
aws/creds/dev-deploy access_key | AWS_ACCESS_KEY_ID;
aws/creds/dev-deploy secret_key | AWS_SECRET_ACCESS_KEY;
aws/creds/dev-deploy security_token | AWS_SESSION_TOKEN;
- name: Upload benchmark results
if: github.event.pull_request.head.repo.full_name == github.repository
run: turbo run upload-benchmarks --env-mode=loose -- --artifacts-path "$(pwd)/${{ matrix.path }}/out" --enforce-flame-graph
- name: Upload benchmark summary
if: github.event_name == 'pull_request'
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
with:
name: ${{ env.TRIMMED_PACKAGE_NAME }}_${{ github.job }}
path: /tmp/${{ env.TRIMMED_PACKAGE_NAME }}.md
integration-benches:
name: Integration
needs: [setup]
permissions:
id-token: write
contents: read
strategy:
matrix: ${{ fromJSON(needs.setup.outputs.integration) }}
fail-fast: false
if: needs.setup.outputs.integration != '{"name":[],"include":[]}'
runs-on: ubuntu-24.04
steps:
- name: Checkout base branch
if: github.event_name == 'pull_request'
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
ref: ${{ github.event.pull_request.base.sha }}
- name: Clean up disk
if: github.event_name == 'pull_request'
uses: ./.github/actions/clean-up-disk
- name: Install tools
if: github.event_name == 'pull_request'
uses: ./.github/actions/install-tools
with:
token: ${{ secrets.GITHUB_TOKEN }}
vault_address: ${{ secrets.VAULT_ADDR }}
- name: Prune repository
if: github.event_name == 'pull_request'
uses: ./.github/actions/prune-repository
with:
scope: |
${{ matrix.name }}
@rust/hash-repo-chores
- name: Warm up repository
if: github.event_name == 'pull_request'
uses: ./.github/actions/warm-up-repo
- name: Create temp files and folders
run: mkdir -p var/logs
- name: Launch external services
if: github.event_name == 'pull_request'
working-directory: infra/compose
run: docker compose --profile dev up -d
- name: Start background tasks
if: github.event_name == 'pull_request'
id: base-background-tasks
env:
# Set terminal logging to WARN level and enable verbose file logging for CI
HASH_GRAPH_LOG_CONSOLE_LEVEL: warn
HASH_GRAPH_LOG_FILE_ENABLED: true
HASH_GRAPH_LOG_FILE_LEVEL: info
HASH_GRAPH_LOG_FOLDER: ${{ github.workspace }}/var/logs
run: |
# Optimistically compile background tasks.
turbo run compile:release --env-mode=loose
mkdir -p logs
turbo run start --env-mode=loose --log-order stream >var/logs/base-background-task.log 2>&1 &
PID=$!
echo "pid=$PID" | tee -a $GITHUB_OUTPUT
turbo run start:healthcheck --env-mode=loose
- name: Run base benches
if: github.event_name == 'pull_request'
run: turbo run bench:integration --filter "${{ matrix.name }}"
- name: Show background tasks logs
if: always() && github.event_name == 'pull_request'
run: |
kill -15 ${{ steps.base-background-tasks.outputs.pid }} || true
cat var/logs/base-background-task.log
- name: Tear down external services
if: github.event_name == 'pull_request'
working-directory: infra/compose
run: docker compose --profile dev down
- name: Checkout head branch
if: github.event_name == 'pull_request'
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
clean: false
ref: ${{ github.event.pull_request.head.sha }}
- name: Checkout
if: github.event_name != 'pull_request'
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Clean up disk
if: github.event_name != 'pull_request'
uses: ./.github/actions/clean-up-disk
- name: Install tools
uses: ./.github/actions/install-tools
with:
token: ${{ secrets.GITHUB_TOKEN }}
vault_address: ${{ secrets.VAULT_ADDR }}
sccache: false # sccache is already running in the background
- name: Prune repository
uses: ./.github/actions/prune-repository
with:
scope: |
${{ matrix.name }}
@rust/hash-repo-chores
- name: Warm up repository
uses: ./.github/actions/warm-up-repo
- name: Create temp files and folders
run: mkdir -p var/logs
- name: Launch external services
working-directory: infra/compose
run: docker compose --profile dev up -d
- name: Start background tasks
id: head-background-tasks
env:
# Set terminal logging to WARN level and enable verbose file logging for CI
HASH_GRAPH_LOG_CONSOLE_LEVEL: warn
HASH_GRAPH_LOG_FILE_ENABLED: true
HASH_GRAPH_LOG_FILE_LEVEL: info
HASH_GRAPH_LOG_FOLDER: ${{ github.workspace }}/var/logs
run: |
# Optimistically compile background tasks.
turbo run compile:release --env-mode=loose
mkdir -p logs
turbo run start --env-mode=loose --log-order stream >var/logs/head-background-task.log 2>&1 &
PID=$!
echo "pid=$PID" | tee -a $GITHUB_OUTPUT
turbo run start:healthcheck --env-mode=loose
- name: Run head benches
run: turbo run bench:integration --filter "${{ matrix.name }}"
- name: Show background tasks logs
if: always()
run: |
kill -15 ${{ steps.head-background-tasks.outputs.pid }} || true
cat var/logs/head-background-task.log
- name: Analyze benchmarks
if: github.event_name == 'pull_request'
run: |
TRIMMED_PACKAGE_NAME=$(echo "${{ matrix.name }}" | sed 's|@||g' | sed 's|/|.|g')
echo "TRIMMED_PACKAGE_NAME=$TRIMMED_PACKAGE_NAME" >> $GITHUB_ENV
echo '<details><summary><h2>${{ matrix.name }} – Integrations</h2></summary>' > "/tmp/$TRIMMED_PACKAGE_NAME.md"
echo >> "/tmp/$TRIMMED_PACKAGE_NAME.md"
turbo run analyze-benchmarks -- --output "/tmp/benches.md" --artifacts-path "$(pwd)/${{ matrix.path }}/out" --enforce-flame-graph
cat "/tmp/benches.md" >> "/tmp/$TRIMMED_PACKAGE_NAME.md"
echo '</details>' >> "/tmp/$TRIMMED_PACKAGE_NAME.md"
- name: Authenticate Vault
id: secrets
if: github.event.pull_request.head.repo.full_name == github.repository
uses: hashicorp/vault-action@4c06c5ccf5c0761b6029f56cfb1dcf5565918a3b # v3.4.0
with:
exportToken: true
url: ${{ env.VAULT_ADDR }}
method: jwt
role: dev
secrets: |
aws/creds/dev-deploy access_key | AWS_ACCESS_KEY_ID;
aws/creds/dev-deploy secret_key | AWS_SECRET_ACCESS_KEY;
aws/creds/dev-deploy security_token | AWS_SESSION_TOKEN;
- name: Upload benchmark results
if: github.event.pull_request.head.repo.full_name == github.repository
run: turbo run upload-benchmarks --env-mode=loose -- --artifacts-path "$(pwd)/${{ matrix.path }}/out" --enforce-flame-graph
- name: Upload benchmark summary
if: github.event_name == 'pull_request'
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
with:
name: ${{ env.TRIMMED_PACKAGE_NAME }}_${{ github.job }}
path: /tmp/${{ env.TRIMMED_PACKAGE_NAME }}.md
- name: Show container logs
if: ${{ success() || failure() }}
working-directory: infra/compose
run: docker compose --profile dev logs --timestamps
- name: Upload background tasks logs
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
if: success() || failure()
with:
name: ${{ env.TRIMMED_PACKAGE_NAME }}_logs
path: |
var/logs
passed:
name: Benches passed
needs: [setup, unit-benches, integration-benches, optimize-ci]
if: always() && needs.optimize-ci.outputs.skip == 'false'
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- name: Check setup script
run: |
[[ ${{ needs.setup.result }} = success ]]
- name: Check unit benches
run: |
[[ ${{ needs.unit-benches.result }} =~ success|skipped ]]
- name: Check integration benches
run: |
[[ ${{ needs.integration-benches.result }} =~ success|skipped ]]
- name: Notify Slack on failure
uses: rtCamp/action-slack-notify@c58b60ee33df2229ed2d2eed86eeaf7e6c527c5a
if: ${{ failure() && github.event_name == 'merge_group' }}
env:
SLACK_LINK_NAMES: true
SLACK_MESSAGE: "At least one bench job for a Pull Request in the Merge Queue failed <!subteam^S09KH99698T>" # Notifies @devops
SLACK_TITLE: Tests failed
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_URL }}
SLACK_USERNAME: GitHub
VAULT_ADDR: ""
VAULT_TOKEN: ""
- name: Checkout
if: github.event_name == 'pull_request' && needs.integration-benches.result == 'success'
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Download reports' artifacts
if: github.event_name == 'pull_request' && needs.integration-benches.result == 'success'
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
path: downloads
- name: Create comment
if: github.event_name == 'pull_request' && needs.integration-benches.result == 'success'
run: |
echo "## Benchmark results" > /tmp/summary.md
cat downloads/*/*.md >> /tmp/summary.md
cat /tmp/summary.md
- name: Post comment
uses: mshick/add-pr-comment@b8f338c590a895d50bcbfa6c5859251edc8952fc # v2.8.2
if: github.event_name == 'pull_request' && needs.integration-benches.result == 'success' && github.event.pull_request.head.repo.full_name == github.repository
with:
message-path: /tmp/summary.md
message-id: benchmark-results
refresh-message-position: true