File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ FROM python:3.10-slim
44# # Default fixtures
55ARG fixtures=latest-stable-release
66ENV INPUT=${fixtures}
7+ ARG branch=main
8+ ENV BRANCH=${branch}
79
810# # Install dependencies
911RUN apt-get update && \
@@ -12,7 +14,7 @@ RUN apt-get update && \
1214 rm -rf /var/lib/apt/lists/*
1315
1416# # Clone and install EEST
15- RUN git clone https://github.com/ethereum/execution-spec-tests.git --branch main --single-branch --depth 1
17+ RUN git clone https://github.com/ethereum/execution-spec-tests.git --branch "$BRANCH" --single-branch --depth 1
1618WORKDIR execution-spec-tests
1719RUN pip install uv && uv sync
1820
Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ FROM python:3.10-slim
44# # Default fixtures
55ARG fixtures=latest-stable-release
66ENV INPUT=${fixtures}
7+ ARG branch=main
8+ ENV BRANCH=${branch}
79
810# # Install dependencies
911RUN apt-get update && \
@@ -12,7 +14,7 @@ RUN apt-get update && \
1214 rm -rf /var/lib/apt/lists/*
1315
1416# # Clone and install EEST
15- RUN git clone https://github.com/ethereum/execution-spec-tests.git --branch main --single-branch --depth 1
17+ RUN git clone https://github.com/ethereum/execution-spec-tests.git --branch "$BRANCH" --single-branch --depth 1
1618WORKDIR execution-spec-tests
1719RUN pip install uv && uv sync
1820
You can’t perform that action at this time.
0 commit comments