-
Notifications
You must be signed in to change notification settings - Fork 2.2k
283 lines (259 loc) · 9.95 KB
/
coprocessor-cargo-tests.yml
File metadata and controls
283 lines (259 loc) · 9.95 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
name: coprocessor-cargo-test
on:
pull_request:
permissions: {}
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
check-changes:
name: coprocessor-cargo-test/check-changes
permissions:
actions: 'read' # Required to read workflow run information
contents: 'read' # Required to checkout repository code
pull-requests: 'read' # Required to read pull request information
runs-on: ubuntu-latest
outputs:
changes-rust-files: ${{ steps.filter.outputs.rust-files }}
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
persist-credentials: 'false'
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
id: filter
with:
filters: |
rust-files:
- .github/workflows/coprocessor-cargo-tests.yml
- coprocessor/fhevm-engine/**
- coprocessor/proto/**
cargo-tests:
name: coprocessor-cargo-test/${{ matrix.service }}
needs: check-changes
if: ${{ needs.check-changes.outputs.changes-rust-files == 'true' }}
permissions:
contents: 'read' # Required to checkout repository code
checks: 'write' # Required to create GitHub checks for test results
runs-on: ${{ matrix.runner }}
env:
CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER: clang
RUSTFLAGS: "-C link-arg=-fuse-ld=mold"
strategy:
fail-fast: false
matrix:
include:
- service: tfhe-worker
package: tfhe-worker
needs_localstack: false
needs_foundry: false
runner: large_ubuntu_16
- service: sns-worker
package: sns-worker
needs_localstack: true
needs_foundry: false
runner: large_ubuntu_16
- service: zkproof-worker
package: zkproof-worker
needs_localstack: false
needs_foundry: false
runner: large_ubuntu_16
- service: transaction-sender
package: transaction-sender
needs_localstack: true
needs_foundry: true
runner: large_ubuntu_16
- service: gw-listener
package: gw-listener
needs_localstack: false
needs_foundry: true
runner: large_ubuntu_16
- service: host-listener
package: host-listener
needs_localstack: false
needs_foundry: true
runner: large_ubuntu_16
- service: common
package: fhevm-engine-common
needs_localstack: false
needs_foundry: false
runner: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
persist-credentials: 'false'
lfs: true
- name: Checkout LFS objects
run: git lfs checkout
- name: Setup Rust toolchain file
run: cp coprocessor/fhevm-engine/rust-toolchain.toml .
- name: Setup Rust
uses: dsherret/rust-toolchain-file@3551321aa44dd44a0393eb3b6bdfbc5d25ecf621 # v1
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@a37010ded18ff788be4440302bd6830b1ae50d8b # v2.68.25
with:
tool: cargo-llvm-cov
- name: Install cargo dependencies
run: |
sudo apt-get update
sudo apt-get install -y protobuf-compiler mold clang
- name: Install foundry
if: ${{ matrix.needs_foundry }}
uses: foundry-rs/foundry-toolchain@de808b1eea699e761c404bda44ba8f21aba30b2c
- name: Cache cargo
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-coverage-${{ matrix.service }}-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-coverage-${{ matrix.service }}-
- name: Use Node.js
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version: 20.x
- name: Start localstack
if: ${{ matrix.needs_localstack }}
run: docker run --rm -d -p 4566:4566 --name localstack localstack/localstack:4.14.0
- name: Run tests with coverage
env:
DATABASE_URL: postgresql://postgres:postgres@localhost:5432/coprocessor
SQLX_OFFLINE: 'true'
TEST_GLOBAL_LOCALSTACK: ${{ matrix.needs_localstack && '1' || '0' }}
TEST_PACKAGE: ${{ matrix.package }}
IS_MERGE_QUEUE: ${{ startsWith(github.head_ref, 'mergify/merge-queue/') && '1' || '0' }}
run: |
# Merge queue: leave unset so supported_types() defaults to full matrix.
# PR CI: run only small types (bool through 64-bit) for faster feedback.
if [ "$IS_MERGE_QUEUE" != "1" ]; then
export TFHE_WORKER_EVENT_TYPE_MATRIX=local
fi
cargo llvm-cov clean --workspace --profile coverage
cargo llvm-cov test -p "$TEST_PACKAGE" --profile coverage
working-directory: coprocessor/fhevm-engine
- name: Export LCOV coverage data
if: ${{ !cancelled() }}
run: cargo llvm-cov report --lcov --profile coverage --output-path /tmp/lcov.info || true
working-directory: coprocessor/fhevm-engine
- name: Upload coverage artifact
if: ${{ !cancelled() }}
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
with:
name: lcov-${{ matrix.service }}
path: /tmp/lcov.info
retention-days: 1
if-no-files-found: ignore
coverage-report:
name: coprocessor-cargo-test/coverage-report
needs: [check-changes, cargo-tests]
if: ${{ !cancelled() && needs.check-changes.outputs.changes-rust-files == 'true' }}
permissions:
contents: 'read' # Required to checkout repository code
pull-requests: 'write' # Required to post coverage comment on PR
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
persist-credentials: 'false'
- name: Install lcov
run: sudo apt-get update && sudo apt-get install -y lcov
- name: Download all coverage artifacts
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
with:
pattern: lcov-*
path: /tmp/coverage
- name: Merge LCOV files
run: |
LCOV_FILES=$(find /tmp/coverage -name 'lcov.info' -size +0c)
if [ -z "$LCOV_FILES" ]; then
echo "No coverage data found"
exit 0
fi
LCOV_ARGS=()
for f in $LCOV_FILES; do
LCOV_ARGS+=(-a "$f")
done
lcov "${LCOV_ARGS[@]}" -o /tmp/lcov.info
- name: Generate coverage summary
if: ${{ !cancelled() }}
run: |
{
echo '## Coverage: coprocessor/fhevm-engine'
if [ -f /tmp/lcov.info ]; then
echo '```'
lcov --summary /tmp/lcov.info 2>&1 || true
echo '```'
else
echo '*No coverage data available (tests may have failed before producing profiling data).*'
fi
} >> "$GITHUB_STEP_SUMMARY"
- name: Diff coverage of changed lines
if: ${{ !cancelled() }}
id: diff-cov
env:
BASE_REF: ${{ github.base_ref }}
run: |
if [ ! -f /tmp/lcov.info ]; then
echo "diff_pct=N/A" >> "$GITHUB_OUTPUT"
exit 0
fi
pip install --quiet diff-cover
git fetch --unshallow origin
git fetch origin "${BASE_REF}:refs/remotes/origin/${BASE_REF}"
diff-cover /tmp/lcov.info \
--compare-branch="origin/${BASE_REF}" \
--diff-range-notation='...' \
--format "json:/tmp/diff-cover.json,markdown:/tmp/diff-cover-report.md" \
--fail-under 0 || true
if [ -f /tmp/diff-cover.json ]; then
DIFF_PCT=$(python3 -c "import json; d=json.load(open('/tmp/diff-cover.json')); n=d.get('total_num_lines',0); print('N/A') if n==0 else print(f\"{d['total_percent_covered']:.1f}%\")" 2>/dev/null || echo "N/A")
else
DIFF_PCT="N/A"
fi
echo "diff_pct=${DIFF_PCT}" >> "$GITHUB_OUTPUT"
- name: Build diff coverage comment
if: ${{ !cancelled() }}
env:
DIFF_PCT: ${{ steps.diff-cov.outputs.diff_pct }}
run: |
{
echo '### Changed Lines Coverage'
echo "Coverage of added/modified lines: **${DIFF_PCT}**"
echo ''
if [ -f /tmp/diff-cover-report.md ]; then
echo '<details><summary>Per-file breakdown</summary>'
echo ''
cat /tmp/diff-cover-report.md
echo ''
echo '</details>'
fi
} | tee -a "$GITHUB_STEP_SUMMARY" > /tmp/coverage-comment.md
- name: Post coverage comment on PR
if: ${{ !cancelled() && github.event.pull_request.head.repo.full_name == github.repository }}
uses: marocchino/sticky-pull-request-comment@773744901bac0e8cbb5a0dc842800d45e9b2b405 # v2.9.4
with:
path: /tmp/coverage-comment.md
cargo-tests-status:
name: coprocessor-cargo-test/cargo-tests (bpr)
needs: [check-changes, cargo-tests, coverage-report]
if: ${{ always() }}
runs-on: ubuntu-latest
env:
CHECK_CHANGES_RESULT: ${{ needs.check-changes.result }}
CARGO_TESTS_RESULT: ${{ needs.cargo-tests.result }}
COVERAGE_RESULT: ${{ needs.coverage-report.result }}
steps:
- name: Check results
run: |
if [ "$CHECK_CHANGES_RESULT" = "failure" ] || \
[ "$CHECK_CHANGES_RESULT" = "cancelled" ] || \
[ "$CARGO_TESTS_RESULT" = "failure" ] || \
[ "$CARGO_TESTS_RESULT" = "cancelled" ] || \
[ "$COVERAGE_RESULT" = "failure" ] || \
[ "$COVERAGE_RESULT" = "cancelled" ]; then
echo "One or more jobs failed or were cancelled"
exit 1
fi
echo "All jobs passed or were skipped"