Skip to content

Commit 4b17558

Browse files
sjarmakclaude
andcommitted
fix: remove invalid --branch flags from rust-systems Dockerfiles
The sg-evals mirrors rust--01f6ddf7 and servo--be6a2f99 only have a main branch (orphan commit approach). The --branch <hash> flag caused Docker build failures for tasks 044, 131, 132. Cloning default branch (main) gets the correct pinned content. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent b37c56f commit 4b17558

File tree

3 files changed

+6
-6
lines changed
  • benchmarks
    • ccb_mcp_crossorg/ccx-crossorg-132/environment
    • ccb_mcp_incident/ccx-incident-131/environment
    • ccb_mcp_onboarding/ccx-onboard-044/environment

3 files changed

+6
-6
lines changed

benchmarks/ccb_mcp_crossorg/ccx-crossorg-132/environment/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
1414
WORKDIR /workspace
1515

1616
# Clone local checkout repos (baseline config: agent has local access to these)
17-
RUN git clone --depth 1 --branch 01f6ddf7 https://github.com/sg-evals/rust--01f6ddf7 /workspace/rust--01f6ddf7
18-
RUN git clone --depth 1 --branch be6a2f99 https://github.com/sg-evals/servo--be6a2f99 /workspace/servo--be6a2f99
17+
RUN git clone --depth 1 https://github.com/sg-evals/rust--01f6ddf7 /workspace/rust--01f6ddf7
18+
RUN git clone --depth 1 https://github.com/sg-evals/servo--be6a2f99 /workspace/servo--be6a2f99
1919

2020
# Initialize git identity for agent commits
2121
RUN git config --global user.email "agent@example.com" && \

benchmarks/ccb_mcp_incident/ccx-incident-131/environment/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
1414
WORKDIR /workspace
1515

1616
# Clone local checkout repos (baseline config: agent has local access to these)
17-
RUN git clone --depth 1 --branch 01f6ddf7 https://github.com/sg-evals/rust--01f6ddf7 /workspace/rust--01f6ddf7
18-
RUN git clone --depth 1 --branch be6a2f99 https://github.com/sg-evals/servo--be6a2f99 /workspace/servo--be6a2f99
17+
RUN git clone --depth 1 https://github.com/sg-evals/rust--01f6ddf7 /workspace/rust--01f6ddf7
18+
RUN git clone --depth 1 https://github.com/sg-evals/servo--be6a2f99 /workspace/servo--be6a2f99
1919

2020
# Initialize git identity for agent commits
2121
RUN git config --global user.email "agent@example.com" && \

benchmarks/ccb_mcp_onboarding/ccx-onboard-044/environment/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
1414
WORKDIR /workspace
1515

1616
# Clone local checkout repos (baseline config: agent has local access to these)
17-
RUN git clone --depth 1 --branch 01f6ddf7 https://github.com/sg-evals/rust--01f6ddf7 /workspace/rust--01f6ddf7
18-
RUN git clone --depth 1 --branch be6a2f99 https://github.com/sg-evals/servo--be6a2f99 /workspace/servo--be6a2f99
17+
RUN git clone --depth 1 https://github.com/sg-evals/rust--01f6ddf7 /workspace/rust--01f6ddf7
18+
RUN git clone --depth 1 https://github.com/sg-evals/servo--be6a2f99 /workspace/servo--be6a2f99
1919

2020
# Initialize git identity for agent commits
2121
RUN git config --global user.email "agent@example.com" && \

0 commit comments

Comments
 (0)