Skip to content

Commit 6237486

Browse files
sjarmakclaude
andcommitted
fix: remove --branch flags from sg-evals mirror clones
sg-evals mirrors are orphan repos where HEAD is the pinned commit. git clone --depth 1 --branch <commit-hash> fails because the hash is not a branch name. Remove --branch to clone HEAD directly. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 4ff6678 commit 6237486

File tree

137 files changed

+301
-300
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

137 files changed

+301
-300
lines changed

benchmarks/ccb_mcp_compliance/ccx-compliance-052/environment/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ 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 v1.31.2 https://github.com/sg-evals/envoy--v1.31.2 /workspace/envoy--v1.31.2
18-
RUN git clone --depth 1 --branch 84e84367 https://github.com/sg-evals/data-plane-api--84e84367 /workspace/data-plane-api--84e84367
19-
RUN git clone --depth 1 --branch 71637ad6 https://github.com/sg-evals/go-control-plane--71637ad6 /workspace/go-control-plane--71637ad6
20-
RUN git clone --depth 1 --branch 957dba5e https://github.com/sg-evals/grpc--957dba5e /workspace/grpc--957dba5e
17+
RUN git clone --depth 1 https://github.com/sg-evals/envoy--v1.31.2 /workspace/envoy--v1.31.2
18+
RUN git clone --depth 1 https://github.com/sg-evals/data-plane-api--84e84367 /workspace/data-plane-api--84e84367
19+
RUN git clone --depth 1 https://github.com/sg-evals/go-control-plane--71637ad6 /workspace/go-control-plane--71637ad6
20+
RUN git clone --depth 1 https://github.com/sg-evals/grpc--957dba5e /workspace/grpc--957dba5e
2121

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

benchmarks/ccb_mcp_compliance/ccx-compliance-052/environment/Dockerfile.artifact_baseline

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
1717
WORKDIR /workspace
1818

1919
# Clone local checkout repos (baseline config: agent has local access to these)
20-
RUN git clone --depth 1 --branch v1.31.2 https://github.com/sg-evals/envoy--v1.31.2 /workspace/envoy--v1.31.2
21-
RUN git clone --depth 1 --branch 84e84367 https://github.com/sg-evals/data-plane-api--84e84367 /workspace/data-plane-api--84e84367
22-
RUN git clone --depth 1 --branch 71637ad6 https://github.com/sg-evals/go-control-plane--71637ad6 /workspace/go-control-plane--71637ad6
23-
RUN git clone --depth 1 --branch 957dba5e https://github.com/sg-evals/grpc--957dba5e /workspace/grpc--957dba5e
20+
RUN git clone --depth 1 https://github.com/sg-evals/envoy--v1.31.2 /workspace/envoy--v1.31.2
21+
RUN git clone --depth 1 https://github.com/sg-evals/data-plane-api--84e84367 /workspace/data-plane-api--84e84367
22+
RUN git clone --depth 1 https://github.com/sg-evals/go-control-plane--71637ad6 /workspace/go-control-plane--71637ad6
23+
RUN git clone --depth 1 https://github.com/sg-evals/grpc--957dba5e /workspace/grpc--957dba5e
2424

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

benchmarks/ccb_mcp_compliance/ccx-compliance-053/environment/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ 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 0753c489 https://github.com/sg-evals/kafka--0753c489 /workspace/kafka--0753c489
18-
RUN git clone --depth 1 --branch 0cc95fcc https://github.com/sg-evals/flink--0cc95fcc /workspace/flink--0cc95fcc
19-
RUN git clone --depth 1 --branch 1006f047 https://github.com/sg-evals/camel--1006f047 /workspace/camel--1006f047
17+
RUN git clone --depth 1 https://github.com/sg-evals/kafka--0753c489 /workspace/kafka--0753c489
18+
RUN git clone --depth 1 https://github.com/sg-evals/flink--0cc95fcc /workspace/flink--0cc95fcc
19+
RUN git clone --depth 1 https://github.com/sg-evals/camel--1006f047 /workspace/camel--1006f047
2020

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

benchmarks/ccb_mcp_compliance/ccx-compliance-053/environment/Dockerfile.artifact_baseline

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
1717
WORKDIR /workspace
1818

1919
# Clone local checkout repos (baseline config: agent has local access to these)
20-
RUN git clone --depth 1 --branch 0753c489 https://github.com/sg-evals/kafka--0753c489 /workspace/kafka--0753c489
21-
RUN git clone --depth 1 --branch 0cc95fcc https://github.com/sg-evals/flink--0cc95fcc /workspace/flink--0cc95fcc
22-
RUN git clone --depth 1 --branch 1006f047 https://github.com/sg-evals/camel--1006f047 /workspace/camel--1006f047
20+
RUN git clone --depth 1 https://github.com/sg-evals/kafka--0753c489 /workspace/kafka--0753c489
21+
RUN git clone --depth 1 https://github.com/sg-evals/flink--0cc95fcc /workspace/flink--0cc95fcc
22+
RUN git clone --depth 1 https://github.com/sg-evals/camel--1006f047 /workspace/camel--1006f047
2323

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

benchmarks/ccb_mcp_compliance/ccx-compliance-115/environment/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ 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 674eda1c https://github.com/sg-evals/django--674eda1c /workspace/django--674eda1c
17+
RUN git clone --depth 1 https://github.com/sg-evals/django--674eda1c /workspace/django--674eda1c
1818

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

benchmarks/ccb_mcp_compliance/ccx-compliance-115/environment/Dockerfile.artifact_baseline

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
1717
WORKDIR /workspace
1818

1919
# Clone local checkout repos (baseline config: agent has local access to these)
20-
RUN git clone --depth 1 --branch 674eda1c https://github.com/sg-evals/django--674eda1c /workspace/django--674eda1c
20+
RUN git clone --depth 1 https://github.com/sg-evals/django--674eda1c /workspace/django--674eda1c
2121

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

benchmarks/ccb_mcp_compliance/ccx-compliance-118/environment/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ 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 674eda1c https://github.com/sg-evals/django--674eda1c /workspace/django--674eda1c
17+
RUN git clone --depth 1 https://github.com/sg-evals/django--674eda1c /workspace/django--674eda1c
1818

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

benchmarks/ccb_mcp_compliance/ccx-compliance-118/environment/Dockerfile.artifact_baseline

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
1717
WORKDIR /workspace
1818

1919
# Clone local checkout repos (baseline config: agent has local access to these)
20-
RUN git clone --depth 1 --branch 674eda1c https://github.com/sg-evals/django--674eda1c /workspace/django--674eda1c
20+
RUN git clone --depth 1 https://github.com/sg-evals/django--674eda1c /workspace/django--674eda1c
2121

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

benchmarks/ccb_mcp_compliance/ccx-compliance-124/environment/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ 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 871325b8460362073cb2069874bef7dde3170cb2 https://github.com/sg-evals/firefox--871325b8 /workspace/firefox--871325b8
17+
RUN git clone --depth 1 https://github.com/sg-evals/firefox--871325b8 /workspace/firefox--871325b8
1818

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

benchmarks/ccb_mcp_compliance/ccx-compliance-124/environment/Dockerfile.artifact_baseline

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
1717
WORKDIR /workspace
1818

1919
# Clone local checkout repos (baseline config: agent has local access to these)
20-
RUN git clone --depth 1 --branch 871325b8460362073cb2069874bef7dde3170cb2 https://github.com/sg-evals/firefox--871325b8 /workspace/firefox--871325b8
20+
RUN git clone --depth 1 https://github.com/sg-evals/firefox--871325b8 /workspace/firefox--871325b8
2121

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

0 commit comments

Comments
 (0)