workflow to verify t8n filling support #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Verify t8n support | ||
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: Build EVMONE EVM | ||
uses: ./.github/actions/build-evm-client/evmone | ||
id: evm-builder2 | ||
with: | ||
targets: "evmone-t8n" | ||
- name: Build GO EVM | ||
uses: ./.github/actions/build-evm-client/geth | ||
- name: Verify EEST t8n fill | ||
run: | | ||
uv run fill tests/frontier/opcodes/test_push.py::test_push | ||
- name: Verify GETH t8n fill | ||
run: | | ||
uv run fill tests/frontier/opcodes/test_push.py::test_push --evm-bin evm | ||
- name: Verify EVMONE t8n fill | ||
run: | | ||
uv run fill tests/frontier/opcodes/test_push.py::test_push --evm-bin evmone-t8n |