-
Notifications
You must be signed in to change notification settings - Fork 195
46 lines (33 loc) · 1.03 KB
/
fill_with_t8n.yaml
File metadata and controls
46 lines (33 loc) · 1.03 KB
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
name: Verify t8n support
on:
pull_request:
jobs:
t8n-fill-support:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up uv
uses: ./.github/actions/setup-uv
- name: Set up Python
run: uv python install 3.10
- name: Install EEST
run: |
uv sync --no-progress
uv run python --version
- name: Verify EEST t8n fill
run: |
uv run fill tests/frontier/examples/test_t8n_structures.py
- name: Build EVMONE EVM
uses: ./.github/actions/build-evm-client/evmone
id: evm-builder2
with:
targets: "evmone-t8n"
- name: Verify EVMONE t8n fill
run: |
uv run fill tests/frontier/examples/test_t8n_structures.py --evm-bin=evmone-t8n
- name: Build GO EVM
uses: ./.github/actions/build-evm-client/geth
- name: Verify GETH t8n fill
run: |
uv run fill tests/frontier/examples/test_t8n_structures.py --evm-bin=evm