Skip to content

Commit 4700dc5

Browse files
author
Dimitry Kh
committed
workflow to verify t8n filling support
1 parent 5242f8a commit 4700dc5

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

.github/workflows/fillwitht8n.yaml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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

0 commit comments

Comments
 (0)