-
Notifications
You must be signed in to change notification settings - Fork 0
319 lines (272 loc) · 8.71 KB
/
ci.yml
File metadata and controls
319 lines (272 loc) · 8.71 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
name: CI
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
schedule:
- cron: '0 0 * * 0' # Weekly dependency check
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
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
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/**'
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
- uses: moonrepo/setup-rust@v1
with:
channel: nightly
components: rustfmt
cache: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Check formatting
run: cargo +nightly fmt --all -- --check
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
- uses: moonrepo/setup-rust@v1
with:
components: clippy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- 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:
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
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:
- os: ubuntu-latest
rust: beta
- os: windows-latest
rust: stable
target: aarch64-pc-windows-msvc
cross: true
steps:
- uses: actions/checkout@v6
- uses: moonrepo/setup-rust@v1
with:
channel: ${{ matrix.rust }}
targets: ${{ matrix.target }}
bins: cargo-nextest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Install dependencies (Ubuntu)
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y libssl-dev pkg-config
- 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 }}
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
- uses: moonrepo/setup-rust@v1
with:
bins: cargo-llvm-cov,cargo-nextest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Generate coverage
run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info nextest
- name: Upload coverage
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: lcov.info
fail_ci_if_error: false
verbose: true
- name: Archive coverage report
uses: actions/upload-artifact@v4
with:
name: coverage-report
path: lcov.info
retention-days: 30
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
- uses: moonrepo/setup-rust@v1
with:
channel: ${{ steps.msrv.outputs.version }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Check with MSRV
run: cargo check --workspace --all-features
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
- uses: moonrepo/setup-rust@v1
with:
targets: wasm32-wasip1
cache-target: release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- 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
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
- uses: moonrepo/setup-rust@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Build benchmarks
run: cargo build --workspace --benches
release-check:
name: Release Build Check
needs: [test]
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v6
- uses: moonrepo/setup-rust@v1
with:
cache-target: release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Build release
run: cargo build --workspace --release --all-features
- name: Check binary size
run: |
ls -lh target/release/
du -sh target/release/
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 [[ "${{ needs.changes.outputs.rust }}" != "true" && "${{ needs.changes.outputs.workflows }}" != "true" ]]; then
echo "No relevant changes - skipped jobs are OK"
exit 0
fi
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!"