-
Notifications
You must be signed in to change notification settings - Fork 739
211 lines (197 loc) · 6.44 KB
/
ci.yml
File metadata and controls
211 lines (197 loc) · 6.44 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
name: CI
on:
push:
branches: [main]
pull_request:
merge_group:
types: [checks_requested]
jobs:
ensure-no_std:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-2026-03-01
targets: wasm32-unknown-unknown
- uses: Swatinem/rust-cache@v2
- run: |
cd ensure-no_std && cargo build
syntax-codegen-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@master
with:
components: rustfmt
toolchain: nightly-2026-03-01
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- run: cargo test --profile=ci-dev -p cairo-lang-syntax-codegen
parallel-tests:
runs-on: ubuntu-latest
strategy:
matrix:
args:
- cairo-lang-casm --features=serde,parity-scale-codec,schemars
- cairo-lang-casm --no-default-features --features=serde,parity-scale-codec
- cairo-lang-compiler
- cairo-lang-debug
- cairo-lang-defs
- cairo-lang-diagnostics
- cairo-lang-doc
- cairo-lang-eq-solver
- cairo-lang-executable
- cairo-lang-executable-plugin
- cairo-lang-execute-utils
- cairo-lang-filesystem
- cairo-lang-formatter
- cairo-lang-lowering
- cairo-lang-parser
- cairo-lang-plugins
- cairo-lang-primitive-token
- cairo-lang-proc-macros
- cairo-lang-project
- cairo-lang-runnable-utils
- cairo-lang-runner
- cairo-lang-semantic
- cairo-lang-sierra
- cairo-lang-sierra-ap-change
- cairo-lang-sierra-gas
- cairo-lang-sierra-generator
- cairo-lang-sierra-to-casm
- cairo-lang-sierra-type-size
- cairo-lang-starknet-classes
- cairo-lang-starknet
- cairo-lang-syntax
- cairo-lang-test-plugin
- cairo-lang-test-runner
- cairo-lang-test-utils
- cairo-lang-utils --features=serde,parity-scale-codec,schemars,testing,tracing
- cairo-lang-utils --no-default-features --features=serde,parity-scale-codec
- tests
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
# Allow only the heavy 'tests' leg to upload the cache; all legs still restore it.
save-if: ${{ matrix.args == 'tests' }}
# Validates that the number of commands in the matrix is equal to the number of crates in the
# workspace + 2 (for the crates which have multiple commands) - 1 (for the syntax-codegen-test)
- run: |
CRATES_COUNT=$(find {crates/*,tests}/Cargo.toml | wc -l)
COMMANDS_COUNT=${{ strategy.job-total }}
if [ $((CRATES_COUNT + 2 - 1)) -ne $COMMANDS_COUNT ]; then
echo "CRATES_COUNT: $CRATES_COUNT"
echo "COMMANDS_COUNT: $COMMANDS_COUNT"
echo "The number of commands in the matrix is not equal to the number of crates in the workspace + 1"
exit 1
fi
- run: |
cargo test --profile=ci-dev -p ${{ matrix.args }}
test:
if: ${{ always() }}
needs: [parallel-tests, syntax-codegen-test]
runs-on: ubuntu-latest
steps:
- if: needs.parallel-tests.result == 'success' && needs.syntax-codegen-test.result == 'success'
run: exit 0
- if: needs.parallel-tests.result != 'success' || needs.syntax-codegen-test.result != 'success'
run: exit 1
rustfmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@master
with:
components: rustfmt
toolchain: nightly-2026-03-01
- uses: Swatinem/rust-cache@v2
- run: scripts/rust_fmt.sh --check
# Checks that all .cairo files in the repo are formatted correctly.
cairofmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- run: scripts/cairo_fmt.sh --check
# Checks that all Cairo code tests run correctly.
cairotest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- run: |
cargo run --profile=release --bin cairo-test -- corelib/
- run: |
cargo run --profile=release --bin cairo-test -- tests/bug_samples --starknet
- run: |
cargo run --profile=release --bin cairo-test -- crates/cairo-lang-starknet/cairo_level_tests/ --starknet
# Checks that error codes are not duplicated.
error-code-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- run: >
scripts/validate_error_codes.sh
# Check that doc comment blocks end with punctuation.
doc-comment-punctuation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- run: >
scripts/check_comment_punctuation.py crates
# Check for unnecessary dependencies.
udeps:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Machete
uses: bnjbvr/cargo-machete@v0.9.1
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@master
with:
components: clippy
toolchain: nightly-2026-03-01
- uses: Swatinem/rust-cache@v2
- run: >
scripts/clippy.sh
taplo:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- uses: taiki-e/install-action@taplo
- run: >
scripts/taplo.sh
typos:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: crate-ci/typos@v1.43.0
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-2026-03-01
- uses: Swatinem/rust-cache@v2
- run: >
scripts/docs.sh
sierra-updated-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: '0'
- run: >
scripts/sierra_update_check.sh origin/$GITHUB_BASE_REF origin/$GITHUB_HEAD_REF