From 84df640b91670d40e9b361e7987d03a653e600fb Mon Sep 17 00:00:00 2001 From: fmoletta Date: Mon, 5 May 2025 18:54:14 -0300 Subject: [PATCH] Download exec specs runner from our fork --- simulators/ethereum/eest/consume-engine/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/simulators/ethereum/eest/consume-engine/Dockerfile b/simulators/ethereum/eest/consume-engine/Dockerfile index 57f25aa334..1273c97a13 100644 --- a/simulators/ethereum/eest/consume-engine/Dockerfile +++ b/simulators/ethereum/eest/consume-engine/Dockerfile @@ -4,7 +4,7 @@ FROM python:3.10-slim ## Default fixtures ARG fixtures=latest-stable-release ENV INPUT=${fixtures} -ARG branch=main +ARG branch=add-ethrex-mapper ENV BRANCH=${branch} ## Install dependencies @@ -14,7 +14,7 @@ RUN apt-get update && \ rm -rf /var/lib/apt/lists/* ## Clone and install EEST -RUN git clone https://github.com/ethereum/execution-spec-tests.git --branch "$BRANCH" --single-branch --depth 1 +RUN git clone https://github.com/lambdaclass/execution-spec-tests.git --branch "$BRANCH" --single-branch --depth 1 WORKDIR execution-spec-tests RUN pip install uv && uv sync