Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

simulators/ethereum: add eest consume engine/rlp and remove pyspec #1178

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
84 changes: 0 additions & 84 deletions configs/cancun.yaml

This file was deleted.

16 changes: 16 additions & 0 deletions simulators/ethereum/eest/consume-engine/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Builds and runs the EEST (execution-spec-tests) consume engine simulator
FROM python:3.10-slim

## Install dependencies
RUN apt-get update && \
apt-get install -y git wget tar && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

## Clone and install EEST
RUN git clone https://github.com/ethereum/execution-spec-tests.git --branch main --single-branch --depth 1
WORKDIR execution-spec-tests
RUN pip install uv && uv sync

## Define `consume engine` entry point using the local fixtures
ENTRYPOINT ["uv", "run", "consume", "engine", "-v", "--input", "latest-stable-release"]
16 changes: 16 additions & 0 deletions simulators/ethereum/eest/consume-rlp/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Builds and runs the EEST (execution-spec-tests) consume rlp simulator
FROM python:3.10-slim

## Install dependencies
RUN apt-get update && \
apt-get install -y git wget tar && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

## Clone and install EEST
RUN git clone https://github.com/ethereum/execution-spec-tests.git --branch main --single-branch --depth 1
WORKDIR execution-spec-tests
RUN pip install uv && uv sync

## Define `consume rlp` entry point using the local fixtures
ENTRYPOINT ["uv", "run", "consume", "rlp", "-v", "--input", "latest-stable-release"]
32 changes: 0 additions & 32 deletions simulators/ethereum/pyspec/Dockerfile

This file was deleted.

40 changes: 0 additions & 40 deletions simulators/ethereum/pyspec/README.md

This file was deleted.

75 changes: 0 additions & 75 deletions simulators/ethereum/pyspec/forks.go

This file was deleted.

100 changes: 0 additions & 100 deletions simulators/ethereum/pyspec/gen_gb.go

This file was deleted.

Loading