-
Notifications
You must be signed in to change notification settings - Fork 44
212 lines (191 loc) · 5.95 KB
/
daily.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
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
name: Daily Block Run
on:
schedule:
# At the end of every day
- cron: "0 0 * * *"
env:
RANGE_SIZE: 25
jobs:
run:
runs-on: ubuntu-latest
env:
LLVM_SYS_191_PREFIX: /usr/lib/llvm-19/
MLIR_SYS_190_PREFIX: /usr/lib/llvm-19/
TABLEGEN_190_PREFIX: /usr/lib/llvm-19/
RPC_ENDPOINT_TESTNET: ${{ secrets.RPC_ENDPOINT_TESTNET }}
RPC_ENDPOINT_MAINNET: ${{ secrets.RPC_ENDPOINT_MAINNET }}
strategy:
max-parallel: 30
matrix:
block:
- 740000
- 741000
- 742000
- 743000
- 744000
- 745000
- 746000
- 747000
- 748000
- 749000
- 800000
- 800050
- 800100
- 800150
- 800200
- 800250
- 800300
- 800350
- 800400
- 800450
- 900000
- 900100
- 900200
- 900300
- 900400
- 900500
- 900600
- 900700
- 900800
- 900900
- 1000000
- 1001000
- 1002000
- 1003000
- 1004000
- 1005000
- 1006000
- 1007000
- 1008000
- 1009000
runner:
- native
- vm
fail-fast: false
defaults:
run:
shell: bash
working-directory: ./starknet-replay
steps:
# We checkout replay as it's the main repository for this workflow
- name: Checkout Replay
uses: actions/checkout@v4
with:
repository: lambdaclass/starknet-replay
path: starknet-replay
# We need native if we want to run with cairo native main
- name: Checkout Native
uses: actions/checkout@v4
with:
path: cairo_native
# We need sequencer if we want to run with cairo native main
- name: Checkout Native
uses: actions/checkout@v4
with:
repository: lambdaclass/sequencer
path: sequencer
ref: replay
# Install dependencies
- uses: ./cairo_native/.github/actions/install-linux-deps
- name: Setup rust env
uses: dtolnay/[email protected]
- name: Retreive cached dependecies
uses: Swatinem/rust-cache@v2
with:
workspaces: "starknet-replay -> target"
cache-directories: "cairo_native"
- name: Build Cairo Native Runtime Library
shell: bash
run: |
cd ../cairo_native
make runtime
echo "CAIRO_NATIVE_RUNTIME_LIBRARY=$(pwd)/libcairo_native_runtime.a" > $GITHUB_ENV
- name: Patch replay dependencies
run: |
# Updates sequencer dependency to local path
name='[[:alnum:]_-]+'
sequencer_url='"https:\/\/github.com\/lambdaclass\/sequencer\.git"'
rev='"[[:alnum:]]+"'
new_path='"..\/sequencer\/crates\/\1"'
sed -i'' -r "s/^($name) = \{ git = $sequencer_url, rev = $rev/\1 = { path = $new_path/" Cargo.toml
# Updates native dependency to local path
new_path='"..\/cairo_native"'
sed -i'' -r "s/^cairo-native = .*/cairo-native.path = $new_path/" Cargo.toml
git diff
- name: Patch sequencer dependencies
run: |
cd ../sequencer
# Updates native dependency to local path
new_path='"..\/cairo_native"'
sed -i'' -r "s/^cairo-native = .*/cairo-native.path = $new_path/" Cargo.toml
# Update native submodule
git rm crates/blockifier/cairo_native
ln -s ../../../cairo_native/ crates/blockifier/cairo_native
git diff
- name: Run with Native
if: ${{ matrix.runner == 'native' }}
run: |
BLOCK_START=${{ matrix.block }}
BLOCK_END=$(($BLOCK_START + $RANGE_SIZE - 1))
cargo run --release --features state_dump block-range $BLOCK_START $BLOCK_END mainnet
- name: Run with VM
if: ${{ matrix.runner == 'vm' }}
run: |
BLOCK_START=${{ matrix.block }}
BLOCK_END=$(($BLOCK_START + $RANGE_SIZE - 1))
cargo run --release --features state_dump,only_cairo_vm block-range $BLOCK_START $BLOCK_END mainnet
# We always upload the dump, even if the job fails
- name: Upload dumps
uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: dump-${{matrix.block}}-${{matrix.runner}}
path: starknet-replay/state_dumps/${{matrix.runner}}
compare:
needs: [run]
runs-on: ubuntu-latest
# We always run the compare job, to ensure that a single run job failing
# would not cancel the whole comparison.
if: ${{ always() }}
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v4
- name: Fetch Native dumps
uses: actions/download-artifact@v4
with:
pattern: dump-*-native
path: state_dumps/native
merge-multiple: true
continue-on-error: true
- name: Fetch VM dumps
uses: actions/download-artifact@v4
with:
pattern: dump-*-vm
path: state_dumps/vm
merge-multiple: true
continue-on-error: true
- name: Compare states
run: |
./scripts/cmp_state_dumps.sh | tee output
- name: Prepare env vars
if: ${{ always() }}
run: |
# Save workflow url
REPO_URL="${{ github.server_url }}/${{ github.repository }}"
echo "WORKFLOW_URL=$REPO_URL/actions/runs/${{ github.run_id }}" | tee -a $GITHUB_ENV
# Save output
{
echo 'OUTPUT<<EOF'
cat output
echo EOF
} >> "$GITHUB_ENV"
- name: Create Issue
if: ${{ failure() }}
uses: JasonEtco/create-an-issue@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COMMIT_SHA: ${{ github.sha }}
with:
filename: .github/ISSUE_TEMPLATE/daily_failure.md