-
Notifications
You must be signed in to change notification settings - Fork 157
457 lines (349 loc) · 11.1 KB
/
ci.yaml
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
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
name: ci
on:
push:
pull_request:
schedule: [cron: "40 1 * * *"]
jobs:
test-release-build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
include:
- toolchain: "nightly"
features: "bench,serde,bt,singlethreaded"
steps:
- name: Setup | Checkout
uses: actions/checkout@v4
- name: Setup | Toolchain
uses: actions-rs/[email protected]
with:
toolchain: "${{ matrix.toolchain }}"
override: true
- name: Build | Release Mode
uses: actions-rs/cargo@v1
with:
command: build
args: --release --features "${{ matrix.features }}" --manifest-path openraft/Cargo.toml
openraft-test-bench:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- toolchain: "nightly"
steps:
- name: Setup | Checkout
uses: actions/checkout@v4
- name: Setup | Toolchain
uses: actions-rs/[email protected]
with:
toolchain: "${{ matrix.toolchain }}"
override: true
- name: Test build for benchmark
uses: actions-rs/cargo@v1
with:
command: bench
args: --features bench nothing-to-run --manifest-path openraft/Cargo.toml
# Run openraft unit test `openraft/` and integration test `tests/`.
openraft-test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- toolchain: "stable"
send_delay: "0"
features: ""
# With network delay
- toolchain: "nightly"
send_delay: "30"
features: ""
# Feature-flag: Standard raft term
- toolchain: "nightly"
send_delay: "0"
features: "single-term-leader"
steps:
- name: Setup | Checkout
uses: actions/checkout@v4
- name: Setup | Toolchain
uses: actions-rs/[email protected]
with:
toolchain: "${{ matrix.toolchain }}"
override: true
# - A store with defensive checks returns error when unexpected accesses are sent to RaftStore.
# - Raft should not depend on defensive error to work correctly.
- name: Test crate `openraft/`
uses: actions-rs/cargo@v1
with:
command: test
args: --features "${{ matrix.features }}" --manifest-path openraft/Cargo.toml
env:
# Parallel tests block each other and result in timeout.
RUST_TEST_THREADS: 2
RUST_LOG: debug
RUST_BACKTRACE: full
OPENRAFT_NETWORK_SEND_DELAY: ${{ matrix.send_delay }}
- name: Test crate `tests/`
uses: actions-rs/cargo@v1
with:
command: test
args: --features "${{ matrix.features }}" --manifest-path tests/Cargo.toml
env:
# Parallel tests block each other and result in timeout.
RUST_TEST_THREADS: 2
RUST_LOG: debug
RUST_BACKTRACE: full
OPENRAFT_NETWORK_SEND_DELAY: ${{ matrix.send_delay }}
- name: Upload artifact
uses: actions/upload-artifact@v3
if: failure()
with:
name: "ut-${{ matrix.toolchain }}-${{ matrix.features }}-${{ matrix.send_delay }}"
path: |
openraft/_log/
tests/_log/
stores:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- store: "stores/memstore"
- store: "stores/rocksstore"
- store: "stores/sledstore"
steps:
- name: Setup | Checkout
uses: actions/checkout@v4
- name: Setup | Toolchain
uses: actions-rs/[email protected]
with:
toolchain: "nightly"
override: true
# - A store with defensive checks returns error when unexpected accesses are sent to RaftStore.
# - Raft should not depend on defensive error to work correctly.
- name: Unit Tests, with defensive store
uses: actions-rs/cargo@v1
with:
command: test
args: --manifest-path "${{ matrix.store }}/Cargo.toml"
env:
# Parallel tests block each other and result in timeout.
RUST_TEST_THREADS: 2
RUST_LOG: debug
RUST_BACKTRACE: full
OPENRAFT_STORE_DEFENSIVE: on
# Test external crate.
# cluster_benchmark is a standalone crate for benchmarking openraft cluster.
cluster-benchmark:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- crate: "cluster_benchmark"
steps:
- name: Setup | Checkout
uses: actions/checkout@v4
- name: Setup | Toolchain
uses: actions-rs/[email protected]
with:
toolchain: "nightly"
override: true
- name: Unit Tests
uses: actions-rs/cargo@v1
with:
command: test
args: --tests nothing --manifest-path "${{ matrix.crate }}/Cargo.toml"
env:
RUST_LOG: debug
RUST_BACKTRACE: full
# Test external crate.
rt-monoio:
runs-on: ubuntu-latest
steps:
- name: Setup | Checkout
uses: actions/checkout@v4
- name: Setup | Toolchain
uses: actions-rs/[email protected]
with:
toolchain: "nightly"
override: true
- name: Unit Tests
uses: actions-rs/cargo@v1
with:
command: test
args: --tests --manifest-path "rt-monoio/Cargo.toml"
env:
RUST_LOG: debug
RUST_BACKTRACE: full
# Feature "serde" will be enabled if one of the member crates enables
# "serde", such as `memstore`, when building a cargo workspace.
#
# To test openraft with "serde" off, it must not build other crates.
#
# This job only tests crate `openraft`.
openraft-feature-test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
# No feature flags are enabled
- toolchain: "nightly"
features: ""
# Enable "serde"
- toolchain: "nightly"
features: "serde"
# Some test requires feature single-term-leader on and serde off.
# This can only be tested without building another crate that enables
# `serde`.
# Move this test to unit-test when the snapshot API is upgraded to
# non-serde-dependent.
- toolchain: "nightly"
features: "single-term-leader"
- toolchain: "nightly"
features: "single-term-leader,serde,singlethreaded"
steps:
- name: Setup | Checkout
uses: actions/checkout@v4
- name: Setup | Toolchain
uses: actions-rs/[email protected]
with:
toolchain: "${{ matrix.toolchain }}"
override: true
- name: Test crate `openraft/`
uses: actions-rs/cargo@v1
with:
command: test
args: --features "${{ matrix.features }}" --manifest-path openraft/Cargo.toml
env:
# Parallel tests block each other and result in timeout.
RUST_TEST_THREADS: 2
RUST_LOG: debug
RUST_BACKTRACE: full
- name: Upload artifact
uses: actions/upload-artifact@v3
if: failure()
with:
name: openraft-feature-test
path: |
openraft/_log/
# Integration tests with various features.
tests-feature-test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- toolchain: "nightly"
features: ""
- toolchain: "nightly"
features: "single-term-leader"
- toolchain: "nightly"
features: "loosen-follower-log-revert"
steps:
- name: Setup | Checkout
uses: actions/checkout@v4
- name: Setup | Toolchain
uses: actions-rs/[email protected]
with:
toolchain: "${{ matrix.toolchain }}"
override: true
- name: Test crate `tests/`
uses: actions-rs/cargo@v1
with:
command: test
args: --features "${{ matrix.features }}" --manifest-path tests/Cargo.toml
env:
# Parallel tests block each other and result in timeout.
RUST_TEST_THREADS: 2
RUST_LOG: debug
RUST_BACKTRACE: full
- name: Upload artifact
uses: actions/upload-artifact@v3
if: failure()
with:
name: tests-feature-test
path: |
tests/_log/
lint:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/[email protected]
with:
components: rustfmt, clippy
- name: Format
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- name: clippy
shell: bash
run: |
cargo clippy --no-deps --workspace --all-targets -- -D warnings
cargo clippy --no-deps --workspace --all-targets --features "bt,serde,bench,single-term-leader,compat" -- -D warnings
- name: Build-doc
uses: actions-rs/cargo@v1
with:
command: doc
args: --all --no-deps
env:
RUSTDOCFLAGS: "-D warnings"
- name: Audit dependencies
shell: bash
# if: "!contains(github.event.head_commit.message, 'skip audit')"
run: cargo audit --db ./target/advisory-db
examples:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
toolchain:
- "stable"
- "nightly"
example:
- "memstore"
- "raft-kv-memstore"
- "raft-kv-memstore-network-v2"
- "raft-kv-memstore-opendal-snapshot-data"
- "raft-kv-memstore-singlethreaded"
- "raft-kv-rocksdb"
steps:
- uses: actions/checkout@v4
- uses: actions-rs/[email protected]
with:
toolchain: "${{ matrix.toolchain }}"
override: true
components: rustfmt, clippy
# Run the following steps in the exmple dir in order to reuse the `./target` dir.
- name: Test examples/${{ matrix.example }}
shell: bash
run: |
cd examples/${{ matrix.example }}
cargo test
env:
RUST_LOG: debug
- name: Test demo script of examples/${{ matrix.example }}
# The script is not meant for testing. Just to ensure it works but do not
# rely on it.
if: ${{ matrix.toolchain == 'stable' }}
shell: bash
run: |
cd examples/${{ matrix.example }}
./test-cluster.sh
- name: Format
# clippy/format produces different result with stable and nightly. Only with nightly.
if: ${{ matrix.toolchain == 'nightly' }}
shell: bash
run: |
cd examples/${{ matrix.example }}
cargo fmt --all -- --check
- name: Clippy
# clippy/format produces different result with stable and nightly. Only with nightly.
if: ${{ matrix.toolchain == 'nightly' }}
shell: bash
run: |
cd examples/${{ matrix.example }}
cargo clippy --no-deps --all-targets -- -D warnings