-
Notifications
You must be signed in to change notification settings - Fork 268
249 lines (237 loc) · 8.94 KB
/
ci.yml
File metadata and controls
249 lines (237 loc) · 8.94 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
name: CI
on:
workflow_dispatch:
push:
branches: [main]
pull_request:
# Daily cron job used to clear and rebuild cache (https://github.com/Swatinem/rust-cache/issues/181).
schedule:
- cron: "0 0 * * *"
# Limits workflow concurrency to only the latest commit in the PR.
concurrency:
group: "${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}"
cancel-in-progress: true
jobs:
detect-changes:
runs-on: ubuntu-24.04
outputs:
code: ${{ steps.filter.outputs.code }}
steps:
- uses: actions/checkout@v4
- uses: dorny/paths-filter@v3
id: filter
with:
filters: |
code:
- 'crates/**'
- '!**/*.md'
- 'Cargo.toml'
- 'Cargo.lock'
- '.github/workflows/**'
test-all-features:
needs: detect-changes
if: needs.detect-changes.outputs.code == 'true'
runs-on: ubuntu-24.04
env:
CARGO_TERM_COLOR: always
MLIR_SYS_190_PREFIX: "/usr/lib/llvm-19"
LLVM_SYS_191_PREFIX: "/usr/lib/llvm-19"
TABLEGEN_190_PREFIX: "/usr/lib/llvm-19"
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/free-disk-space
- uses: rui314/setup-mold@v1
- uses: Swatinem/rust-cache@v2
with:
save-if: ${{ (github.event_name == 'push' && github.ref == 'refs/heads/main') || github.event_name == 'schedule' }}
- uses: arduino/setup-protoc@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- uses: taiki-e/install-action@nextest
- uses: gerlero/add-apt-repository@v1
with:
uri: http://apt.llvm.org/noble/
suite: llvm-toolchain-noble-19
key: https://apt.llvm.org/llvm-snapshot.gpg.key
- uses: gerlero/apt-install@v1
with:
packages: build-essential llvm-19 llvm-19-dev llvm-19-runtime clang-19 clang-tools-19 lld-19 libpolly-19-dev libmlir-19-dev mlir-19-tools
- name: Clear cache
if: github.event_name =='schedule'
run: |
cargo clean
rm -rf ~/.cargo/registry
rm -rf ~/.cargo/git
- name: Compile pathfinder binary in release mode to check if integration testing cli is unavailable
run: cargo build --release -p pathfinder --bin pathfinder -F p2p
- name: Compile unit tests with all features enabled
run: cargo nextest run --cargo-profile ci-dev --all-targets --all-features --workspace --locked --no-run --timings
- name: Run unit tests with all features enabled excluding consensus integration tests
run: timeout 10m cargo nextest run --cargo-profile ci-dev --no-fail-fast --all-targets --all-features --workspace --locked -E 'not test(/^test::consensus_3_nodes/)' --retries 2
- name: Store timings with all features enabled
uses: actions/upload-artifact@v4
with:
name: timings-all-features
path: target/cargo-timings/
if-no-files-found: warn
test-consensus:
needs: detect-changes
if: needs.detect-changes.outputs.code == 'true'
runs-on: ubuntu-24.04
env:
CARGO_TERM_COLOR: always
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/free-disk-space
- uses: rui314/setup-mold@v1
- uses: Swatinem/rust-cache@v2
with:
save-if: ${{ (github.event_name == 'push' && github.ref == 'refs/heads/main') || github.event_name == 'schedule' }}
- uses: arduino/setup-protoc@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- uses: taiki-e/install-action@nextest
- name: Clear cache
if: github.event_name == 'schedule'
run: |
cargo clean
rm -rf ~/.cargo/registry
rm -rf ~/.cargo/git
- name: Compile feeder gateway binary for consensus integration tests
run: cargo build -p feeder-gateway -F small_aggregate_filters --bin feeder-gateway
- name: Compile pathfinder binary for consensus integration tests
run: cargo build -p pathfinder -F p2p -F consensus-integration-tests --bin pathfinder
- name: Run consensus integration tests
env:
APP_TEMP_DIR: ${{ runner.temp }}
run: PATHFINDER_TEST_ENABLE_MARKER_FILES=1 timeout 20m cargo nextest run --test consensus -p pathfinder --features p2p,consensus-integration-tests --locked --retries 2 -j 1
- name: Store test artifacts for consensus integration tests
if: always()
uses: actions/upload-artifact@v4
with:
name: consensus-integration-tests
include-hidden-files: true
path: ${{ runner.temp }}/consensus-integration-tests/
if-no-files-found: warn
test-default-features:
needs: detect-changes
if: needs.detect-changes.outputs.code == 'true'
runs-on: ubuntu-24.04
env:
CARGO_TERM_COLOR: always
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/free-disk-space
- uses: rui314/setup-mold@v1
- uses: Swatinem/rust-cache@v2
with:
save-if: ${{ (github.event_name == 'push' && github.ref == 'refs/heads/main') || github.event_name == 'schedule' }}
- uses: arduino/setup-protoc@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- uses: taiki-e/install-action@nextest
- name: Clear cache
if: github.event_name =='schedule'
run: |
cargo clean
rm -rf ~/.cargo/registry
rm -rf ~/.cargo/git
- name: Compile unit tests with default features
run: cargo nextest run --cargo-profile ci-dev --all-targets --workspace --locked --no-run --timings
- name: Run unit tests with default features
run: timeout 10m cargo nextest run --cargo-profile ci-dev --no-fail-fast --all-targets --workspace --locked
- name: Store timings with default features
uses: actions/upload-artifact@v4
with:
name: timings-default-features
path: target/cargo-timings/
if-no-files-found: warn
clippy:
needs: detect-changes
if: needs.detect-changes.outputs.code == 'true'
runs-on: ubuntu-24.04
env:
MLIR_SYS_190_PREFIX: "/usr/lib/llvm-19"
LLVM_SYS_191_PREFIX: "/usr/lib/llvm-19"
TABLEGEN_190_PREFIX: "/usr/lib/llvm-19"
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
with:
save-if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
- uses: arduino/setup-protoc@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- uses: gerlero/add-apt-repository@v1
with:
uri: http://apt.llvm.org/noble/
suite: llvm-toolchain-noble-19
key: https://apt.llvm.org/llvm-snapshot.gpg.key
- uses: gerlero/apt-install@v1
with:
packages: llvm-19 llvm-19-dev llvm-19-runtime clang-19 clang-tools-19 lld-19 libpolly-19-dev libmlir-19-dev mlir-19-tools
- name: Clear cache
if: github.event_name =='schedule'
run: |
cargo clean
rm -rf ~/.cargo/registry
rm -rf ~/.cargo/git
- run: |
cargo clippy --workspace --all-targets --all-features --locked -- -D warnings -D rust_2018_idioms
cargo clippy --workspace --all-targets --locked -- -D warnings -D rust_2018_idioms
cargo clippy --workspace --all-targets --all-features --locked --manifest-path crates/load-test/Cargo.toml -- -D warnings -D rust_2018_idioms
rustfmt:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt
- run: |
cargo +nightly fmt --all -- --check
cargo +nightly fmt --all --manifest-path crates/load-test/Cargo.toml -- --check
doc:
needs: detect-changes
if: needs.detect-changes.outputs.code == 'true'
runs-on: ubuntu-24.04
env:
RUSTDOCFLAGS: "-D warnings"
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
with:
save-if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
- uses: arduino/setup-protoc@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Clear cache
if: github.event_name =='schedule'
run: cargo clean
- run: cargo doc --no-deps --document-private-items
dep-sort:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: baptiste0928/cargo-install@v3
with:
crate: cargo-sort
version: "~2.0.2"
- run: |
cargo sort --check --workspace
typos:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: crate-ci/typos@v1.26.0
with:
files: .
load_test:
needs: detect-changes
if: needs.detect-changes.outputs.code == 'true'
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: cargo check
run: |
cd crates/load-test
cargo check