-
Notifications
You must be signed in to change notification settings - Fork 495
171 lines (161 loc) · 5.88 KB
/
ci.yml
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
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@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-2024-11-17
targets: wasm32-unknown-unknown
- uses: Swatinem/rust-cache@v2
- run: |
cd ensure-no_std && cargo build
parallel-tests:
runs-on: ubuntu-latest
strategy:
matrix:
cmd:
- test --profile=ci-dev -p cairo-lang-casm --features=serde,parity-scale-codec,schemars
- test --profile=ci-dev -p cairo-lang-casm --no-default-features --features=serde,parity-scale-codec
- test --profile=ci-dev -p cairo-lang-compiler
- test --profile=ci-dev -p cairo-lang-debug
- test --profile=ci-dev -p cairo-lang-defs
- test --profile=ci-dev -p cairo-lang-diagnostics
- test --profile=ci-dev -p cairo-lang-doc
- test --profile=ci-dev -p cairo-lang-eq-solver
- test --profile=ci-dev -p cairo-lang-filesystem
- test --profile=ci-dev -p cairo-lang-formatter
- test --profile=ci-dev -p cairo-lang-language-server
- test --profile=ci-dev -p cairo-lang-lowering
- test --profile=ci-dev -p cairo-lang-parser
- test --profile=ci-dev -p cairo-lang-plugins
- test --profile=ci-dev -p cairo-lang-proc-macros
- test --profile=ci-dev -p cairo-lang-project
- test --profile=ci-dev -p cairo-lang-runnable
- test --profile=ci-dev -p cairo-lang-runnable-utils
- test --profile=ci-dev -p cairo-lang-runner
- test --profile=ci-dev -p cairo-lang-semantic
- test --profile=ci-dev -p cairo-lang-sierra
- test --profile=ci-dev -p cairo-lang-sierra-ap-change
- test --profile=ci-dev -p cairo-lang-sierra-gas
- test --profile=ci-dev -p cairo-lang-sierra-generator
- test --profile=ci-dev -p cairo-lang-sierra-to-casm
- test --profile=ci-dev -p cairo-lang-sierra-type-size
- test --profile=ci-dev -p cairo-lang-starknet-classes
- test --profile=ci-dev -p cairo-lang-starknet
- test --profile=ci-dev -p cairo-lang-syntax
- test --profile=ci-dev -p cairo-lang-syntax-codegen
- test --profile=ci-dev -p cairo-lang-test-plugin
- test --profile=ci-dev -p cairo-lang-test-runner
- test --profile=ci-dev -p cairo-lang-test-utils
- test --profile=ci-dev -p cairo-lang-utils --features=serde,parity-scale-codec,schemars,testing,env_logger
- test --profile=ci-dev -p cairo-lang-utils --no-default-features --features=serde,parity-scale-codec
- test --profile=ci-dev -p tests
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
components: rustfmt
toolchain: nightly-2024-11-17
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- name: Install nextest
uses: taiki-e/install-action@nextest
# 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)
- run: |
CRATES_COUNT=$(find {crates/*,tests}/Cargo.toml | wc -l)
COMMANDS_COUNT=${{ strategy.job-total }}
if [ $((CRATES_COUNT + 2)) -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 + 2"
exit 1
fi
- run: |
cargo ${{ matrix.cmd }}
test:
if: ${{ always() }}
needs: parallel-tests
runs-on: ubuntu-latest
steps:
- if: needs.parallel-tests.result == 'success'
run: exit 0
- if: needs.parallel-tests.result != 'success'
run: exit 1
rustfmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
components: rustfmt
toolchain: nightly-2024-11-17
- uses: Swatinem/rust-cache@v2
- run: scripts/rust_fmt.sh --check
# Checks all .cairo files in the repo are formatted correctly.
cairofmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- run: scripts/cairo_fmt.sh --check
# Checks all cairo corelib tests run correctly.
cairotest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- run: scripts/cairo_test.sh
- run: scripts/starknet_test.sh
# Check for unnecessary dependencies.
udeps:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Machete
uses: bnjbvr/cargo-machete@main
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
components: clippy
toolchain: nightly-2024-11-17
- uses: Swatinem/rust-cache@v2
- run: >
scripts/clippy.sh
typos:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: crate-ci/typos@v1.27.0
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-2024-11-17
- uses: Swatinem/rust-cache@v2
- run: >
scripts/docs.sh
sierra-updated-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: '0'
- run: >
scripts/sierra_update_check.sh origin/$GITHUB_BASE_REF origin/$GITHUB_HEAD_REF