File tree Expand file tree Collapse file tree 1 file changed +41
-0
lines changed
Expand file tree Collapse file tree 1 file changed +41
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Verify t8n support
2+
3+ jobs :
4+ t8n-fill-support :
5+ runs-on : ubuntu-latest
6+
7+ steps :
8+ - name : Checkout code
9+ uses : actions/checkout@v4
10+
11+ - name : Set up uv
12+ uses : ./.github/actions/setup-uv
13+
14+ - name : Set up Python
15+ run : uv python install 3.10
16+
17+ - name : Install EEST
18+ run : |
19+ uv sync --no-progress
20+ uv run python --version
21+
22+ - name : Build EVMONE EVM
23+ uses : ./.github/actions/build-evm-client/evmone
24+ id : evm-builder2
25+ with :
26+ targets : " evmone-t8n"
27+
28+ - name : Build GO EVM
29+ uses : ./.github/actions/build-evm-client/geth
30+
31+ - name : Verify EEST t8n fill
32+ run : |
33+ uv run fill tests/frontier/opcodes/test_push.py::test_push
34+
35+ - name : Verify GETH t8n fill
36+ run : |
37+ uv run fill tests/frontier/opcodes/test_push.py::test_push --evm-bin evm
38+
39+ - name : Verify EVMONE t8n fill
40+ run : |
41+ uv run fill tests/frontier/opcodes/test_push.py::test_push --evm-bin evmone-t8n
You can’t perform that action at this time.
0 commit comments