-
Notifications
You must be signed in to change notification settings - Fork 43
150 lines (134 loc) · 4.84 KB
/
starknet-blocks.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
name: Execute blocks
on:
pull_request:
branches: [main]
merge_group:
types: [checks_requested]
jobs:
run-blocks:
name: Run Blocks
runs-on: ubuntu-latest
env:
MLIR_SYS_190_PREFIX: /usr/lib/llvm-19/
LLVM_SYS_191_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:
matrix:
runner: [native, vm]
block: [742001, 769597, 779328, 801008, 803072]
steps:
- uses: actions/checkout@v4
- uses: dtolnay/[email protected]
with:
components: clippy
- uses: Swatinem/rust-cache@v2
with:
key: "ref-16302c859b1aacc019eea154a58eddc7b32050c1"
- name: Check and free hdd space left
if: ${{ matrix.runner == 'native' }}
run: |
echo "Listing 20 largest packages"
dpkg-query -Wf '${Installed-Size}\t${Package}\n' | sort -n | tail -n 20
df -h
sudo apt-get update
sudo apt-get remove -y '^llvm-.*'
sudo apt-get remove -y 'php.*'
sudo apt-get remove -y '^dotnet-.*'
sudo apt-get remove -y '^temurin-.*'
sudo apt-get remove -y azure-cli microsoft-edge-stable google-chrome-stable firefox mono-devel
sudo apt-get autoremove -y
sudo apt-get clean
df -h
echo "Removing large directories"
# deleting 15GB
sudo rm -rf /usr/share/dotnet/
sudo rm -rf /usr/local/lib/android
df -h
- name: add llvm deb repository
uses: myci-actions/add-deb-repo@11
with:
repo: deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-19 main
repo-name: llvm-repo
keys-asc: https://apt.llvm.org/llvm-snapshot.gpg.key
- name: Install LLVM
run: sudo apt-get install 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: Install Cairo Native deps
if: ${{ matrix.runner == 'native' }}
run: make deps
- name: Build Cairo Native project
if: ${{ matrix.runner == 'native' }}
run: cargo b --release
- name: Build runtime
if: ${{ matrix.runner == 'native' }}
run: |
make runtime
cargo update
echo "CAIRO_NATIVE_RUNTIME_LIBRARY=$(pwd)/libcairo_native_runtime.a" > $GITHUB_ENV
- name: Checkout Starknet Replay
uses: actions/checkout@v4
with:
repository: lambdaclass/starknet-replay
ref: 16302c859b1aacc019eea154a58eddc7b32050c1
path: replay
- name: Install Starknet Replay deps
run: make deps
- name: Patch Cairo Native's version
if: ${{ matrix.runner == 'native' }}
run: |
cd replay
sed -r -i 's/cairo-native.*/cairo-native = { path = ".." }/' Cargo.toml
- name: Run Blocks Native
if: ${{ matrix.runner == 'native' }}
run: |
cd replay
cargo build --release --bin replay
cargo run --release --features state_dump block mainnet ${{ matrix.block }}
- name: Run Blocks VM
if: ${{ matrix.runner == 'vm' }}
run: |
cd replay
cargo build --release --bin replay
cargo run --release --features "state_dump,only_cairo_vm" block mainnet ${{ matrix.block }}
- name: Upload dumps
uses: actions/upload-artifact@v4
with:
name: dump-${{matrix.block}}-${{matrix.runner}}
path: replay/state_dumps/${{matrix.runner}}
compare-dumps:
needs: [run-blocks]
runs-on: ubuntu-latest
strategy:
matrix:
block: [742001, 769597, 779328, 801008, 803072]
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Check and free hdd space left
if: ${{ matrix.runner == 'native' }}
run: |
sudo apt-get update
sudo apt-get remove -y '^llvm-.*'
sudo apt-get remove -y 'php.*'
sudo apt-get remove -y '^dotnet-.*'
sudo apt-get remove -y '^temurin-.*'
sudo apt-get remove -y azure-cli microsoft-edge-stable google-chrome-stable firefox mono-devel
sudo apt-get autoremove -y
sudo apt-get clean
echo "Removing large directories"
# deleting 15GB
sudo rm -rf /usr/share/dotnet/
sudo rm -rf /usr/local/lib/android
- name: Fetch Native dumps
uses: actions/download-artifact@v4
with:
name: dump-${{matrix.block}}-native
path: state_dumps/native
- name: Fetch VM dumps
uses: actions/download-artifact@v4
with:
name: dump-${{matrix.block}}-vm
path: state_dumps/vm
- name: Check Diffs
run: ./scripts/diff-check.sh