-
Notifications
You must be signed in to change notification settings - Fork 0
433 lines (370 loc) · 12.5 KB
/
ci.yml
File metadata and controls
433 lines (370 loc) · 12.5 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
name: CI
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
schedule:
- cron: '0 0 * * 0' # Weekly dependency check
# Restrict permissions for all jobs by default
permissions:
contents: read
env:
CARGO_TERM_COLOR: always
CARGO_INCREMENTAL: 0
CARGO_NET_RETRY: 10
RUST_BACKTRACE: short
RUSTFLAGS: "-D warnings"
RUSTUP_MAX_RETRIES: 10
# Cancel previous runs on new push
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
# Detect changes to skip unnecessary jobs
changes:
name: Detect Changes
runs-on: ubuntu-latest
permissions:
pull-requests: read
outputs:
rust: ${{ steps.filter.outputs.rust }}
workflows: ${{ steps.filter.outputs.workflows }}
steps:
- uses: actions/checkout@v6
- uses: dorny/paths-filter@v3
id: filter
with:
filters: |
rust:
- '**/*.rs'
- '**/Cargo.toml'
- '**/Cargo.lock'
- 'rust-toolchain.toml'
- 'deny.toml'
workflows:
- '.github/workflows/**'
# Format check (nightly for Edition 2024)
fmt:
name: Format
needs: changes
if: needs.changes.outputs.rust == 'true' || needs.changes.outputs.workflows == 'true'
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v6
- name: Install Rust nightly
uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt
- name: Check formatting
run: cargo fmt --all -- --check
# Clippy and docs (stable)
check:
name: Check
needs: changes
if: needs.changes.outputs.rust == 'true' || needs.changes.outputs.workflows == 'true'
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v6
- name: Install Rust stable
uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- name: Cache Cargo
uses: Swatinem/rust-cache@v2
with:
shared-key: "check"
save-if: ${{ github.ref == 'refs/heads/main' }}
- name: Clippy
run: cargo clippy --workspace --all-targets --all-features -- -D warnings
- name: Check documentation
run: cargo doc --workspace --no-deps --all-features
env:
RUSTDOCFLAGS: "-D warnings"
# Security audit
security:
name: Security Audit
needs: changes
if: needs.changes.outputs.rust == 'true' || github.event_name == 'schedule'
runs-on: ubuntu-latest
timeout-minutes: 10
permissions:
contents: read
issues: write
steps:
- uses: actions/checkout@v6
- name: Install cargo-deny
uses: taiki-e/install-action@cargo-deny
- name: Run cargo-deny
run: cargo deny check
# Note: cargo-semver-checks removed for pre-1.0 development
# Checking semver compliance for 7 crates takes 5-7 minutes
# and is not valuable for pre-1.0 versions (breaking changes allowed)
# Re-enable when approaching 1.0.0 release
# Cross-platform tests with matrix
test:
name: Test (${{ matrix.os }}${{ matrix.target && format(' / {0}', matrix.target) || '' }})
needs: [changes, fmt, check]
if: needs.changes.outputs.rust == 'true' || needs.changes.outputs.workflows == 'true'
runs-on: ${{ matrix.os }}
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
rust: [stable]
include:
# Test on beta channel on Linux only
- os: ubuntu-latest
rust: beta
# Cross-compile check for Windows ARM64
- os: windows-latest
rust: stable
target: aarch64-pc-windows-msvc
cross: true
steps:
- uses: actions/checkout@v6
- name: Install Rust ${{ matrix.rust }}
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
targets: ${{ matrix.target }}
# Platform-specific setup
- name: Install dependencies (Ubuntu)
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y libssl-dev pkg-config
- name: Cache Cargo
uses: Swatinem/rust-cache@v2
with:
shared-key: "test-${{ matrix.os }}${{ matrix.target && format('-{0}', matrix.target) || '' }}"
save-if: ${{ github.ref == 'refs/heads/main' }}
- name: Install nextest
if: ${{ !matrix.cross }}
uses: taiki-e/install-action@nextest
- name: Run tests
if: ${{ !matrix.cross }}
run: cargo nextest run --workspace --all-features --no-fail-fast
- name: Run doctests
if: ${{ !matrix.cross }}
run: cargo test --workspace --doc --all-features
- name: Build for cross-compile target
if: ${{ matrix.cross }}
run: cargo build --workspace --target ${{ matrix.target }}
# Code coverage (Linux only for speed)
# Optimized: Single test run with codecov flags for per-crate tracking
# Previous approach ran tests 7 times (1 overall + 6 per-crate) taking ~15 min
# New approach: Single run with flags takes ~5 min (67% faster, 67% less runner cost)
coverage:
name: Code Coverage
needs: [changes, fmt, check]
if: needs.changes.outputs.rust == 'true' || needs.changes.outputs.workflows == 'true'
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v6
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Install llvm-cov and nextest
uses: taiki-e/install-action@v2
with:
tool: cargo-llvm-cov,cargo-nextest
- name: Cache Cargo
uses: Swatinem/rust-cache@v2
with:
shared-key: "coverage"
- name: Generate coverage (single run for all crates)
run: |
cargo llvm-cov --all-features --workspace --lcov \
--output-path lcov.info nextest
# Upload overall coverage with overall flag
- name: Upload overall coverage
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: lcov.info
flags: overall
fail_ci_if_error: false
verbose: true
# Upload per-crate coverage using flags
# Codecov automatically filters by file paths in each crate
- name: Upload deps-core coverage
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: lcov.info
flags: deps-core
fail_ci_if_error: false
- name: Upload deps-cargo coverage
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: lcov.info
flags: deps-cargo
fail_ci_if_error: false
- name: Upload deps-npm coverage
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: lcov.info
flags: deps-npm
fail_ci_if_error: false
- name: Upload deps-pypi coverage
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: lcov.info
flags: deps-pypi
fail_ci_if_error: false
- name: Upload deps-go coverage
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: lcov.info
flags: deps-go
fail_ci_if_error: false
- name: Upload deps-lsp coverage
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: lcov.info
flags: deps-lsp
fail_ci_if_error: false
- name: Archive coverage report
uses: actions/upload-artifact@v4
with:
name: coverage-report
path: lcov.info
retention-days: 30
# MSRV check
msrv:
name: Check MSRV
needs: [changes, fmt, check]
if: needs.changes.outputs.rust == 'true' || needs.changes.outputs.workflows == 'true'
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v6
- name: Read MSRV from Cargo.toml
id: msrv
run: |
MSRV=$(grep '^rust-version' Cargo.toml | sed 's/.*"\(.*\)".*/\1/')
echo "version=$MSRV" >> $GITHUB_OUTPUT
- name: Install Rust ${{ steps.msrv.outputs.version }}
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ steps.msrv.outputs.version }}
- name: Cache Cargo
uses: Swatinem/rust-cache@v2
with:
shared-key: "msrv"
- name: Check with MSRV
run: cargo check --workspace --all-features
# WASM build check for Zed extension
# Note: deps-zed is now a separate repository (submodule).
# WASM build is handled in the deps-zed repo CI.
# This job now validates that submodule is properly configured.
wasm:
name: WASM Build (Zed Extension)
needs: [changes, fmt, check]
if: needs.changes.outputs.rust == 'true' || needs.changes.outputs.workflows == 'true'
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v6
with:
submodules: true
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
targets: wasm32-wasip1
- name: Cache Cargo
uses: Swatinem/rust-cache@v2
with:
shared-key: "wasm"
- name: Build Zed extension
working-directory: crates/deps-zed
run: cargo build --target wasm32-wasip1 --release
- name: Check WASM size
run: |
ls -lh crates/deps-zed/target/wasm32-wasip1/release/*.wasm
du -sh crates/deps-zed/target/wasm32-wasip1/release/*.wasm
# Verify benchmarks compile (without running)
benchmark:
name: Check Benchmarks
needs: [changes, fmt, check]
if: needs.changes.outputs.rust == 'true' || needs.changes.outputs.workflows == 'true'
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v6
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Cache Cargo
uses: Swatinem/rust-cache@v2
with:
shared-key: "bench"
save-if: ${{ github.ref == 'refs/heads/main' }}
- name: Build benchmarks
run: cargo build --workspace --benches
# Release build check
release-check:
name: Release Build Check
needs: [test]
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v6
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Cache Cargo
uses: Swatinem/rust-cache@v2
with:
shared-key: "release"
- name: Build release
run: cargo build --workspace --release --all-features
- name: Check binary size
run: |
ls -lh target/release/
du -sh target/release/
# All checks passed
ci-success:
name: CI Success
needs: [changes, fmt, check, security, test, coverage, msrv, wasm, benchmark]
runs-on: ubuntu-latest
if: always()
steps:
- name: Check all jobs
run: |
# If no relevant changes, all skipped jobs are OK
if [[ "${{ needs.changes.outputs.rust }}" != "true" && "${{ needs.changes.outputs.workflows }}" != "true" ]]; then
echo "No relevant changes - skipped jobs are OK"
exit 0
fi
# Check if any required job failed (skipped is OK for conditional jobs)
check_job() {
local result="$1"
local name="$2"
if [[ "$result" == "failure" || "$result" == "cancelled" ]]; then
echo "Job $name failed: $result"
return 1
fi
return 0
}
failed=0
check_job "${{ needs.fmt.result }}" "fmt" || failed=1
check_job "${{ needs.check.result }}" "check" || failed=1
check_job "${{ needs.security.result }}" "security" || failed=1
check_job "${{ needs.test.result }}" "test" || failed=1
check_job "${{ needs.coverage.result }}" "coverage" || failed=1
check_job "${{ needs.msrv.result }}" "msrv" || failed=1
check_job "${{ needs.wasm.result }}" "wasm" || failed=1
check_job "${{ needs.benchmark.result }}" "benchmark" || failed=1
if [[ $failed -eq 1 ]]; then
echo "One or more jobs failed"
exit 1
fi
echo "All jobs passed successfully!"