Skip to content

Commit d87bf57

Browse files
sjarmakclaude
andcommitted
fix: add missing cd commands in 9 ccb_test Dockerfiles
6 code-review Dockerfiles were missing `cd /workspace` between git clone and git config, causing git config to run from / (Docker default WORKDIR). 3 perf Dockerfiles were missing `cd /workspace/original` before git submodule update. Affected tasks: aspnetcore-code-review-001, calcom-code-review-001, envoy-code-review-001, ghost-code-review-001, terraform-code-review-001, vscode-code-review-001, numpy-array-sum-perf-001, sklearn-kmeans-perf-001, pandas-groupby-perf-001. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent ebaa2dd commit d87bf57

File tree

9 files changed

+9
-0
lines changed

9 files changed

+9
-0
lines changed

benchmarks/ccb_test/aspnetcore-code-review-001/environment/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ RUN if ! command -v node &> /dev/null; then \
1717

1818
# Clone dotnet/aspnetcore at pinned commit (PR #64636 merge commit)
1919
RUN git clone --depth 1 https://github.com/sg-evals/aspnetcore--87525573.git /workspace && \
20+
cd /workspace && \
2021
git config user.email "agent@example.com" && \
2122
git config user.name "Agent"
2223

benchmarks/ccb_test/calcom-code-review-001/environment/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ RUN if ! command -v node &> /dev/null; then \
1717

1818
# Clone calcom/cal.com at pinned commit (PR #26801 merge commit)
1919
RUN git clone --depth 1 https://github.com/sg-evals/cal.com--4b99072b.git /workspace && \
20+
cd /workspace && \
2021
git config user.email "agent@example.com" && \
2122
git config user.name "Agent"
2223

benchmarks/ccb_test/envoy-code-review-001/environment/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ RUN if ! command -v node &> /dev/null; then \
1717

1818
# Clone envoyproxy/envoy at pinned v1.33.0 tag (sparse checkout for relevant files)
1919
RUN git clone --depth 1 https://github.com/sg-evals/envoy--v1.33.0.git /workspace && \
20+
cd /workspace && \
2021
git config user.email "agent@example.com" && \
2122
git config user.name "Agent"
2223

benchmarks/ccb_test/ghost-code-review-001/environment/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ RUN if ! command -v node &> /dev/null; then \
1717

1818
# Clone TryGhost/Ghost at pinned commit (PR #26260 merge commit)
1919
RUN git clone --depth 1 https://github.com/sg-evals/Ghost--b43bfc85.git /workspace && \
20+
cd /workspace && \
2021
git config user.email "agent@example.com" && \
2122
git config user.name "Agent"
2223

benchmarks/ccb_test/numpy-array-sum-perf-001/environment/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ RUN pip install --no-cache-dir \
3232

3333
# Clone numpy at pinned commit directly into workspace
3434
RUN git clone --depth 1 https://github.com/sg-evals/numpy--a639fbf5.git /workspace/original && \
35+
cd /workspace/original && \
3536
git submodule update --init --recursive
3637

3738
# Create optimized copy (agent works here)

benchmarks/ccb_test/pandas-groupby-perf-001/environment/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ RUN pip install --no-cache-dir \
3333

3434
# Clone pandas at pinned commit directly into workspace
3535
RUN git clone --depth 1 https://github.com/sg-evals/pandas--41968da5.git /workspace/original && \
36+
cd /workspace/original && \
3637
git submodule update --init --recursive
3738

3839
# Create optimized copy (agent works here)

benchmarks/ccb_test/sklearn-kmeans-perf-001/environment/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ RUN pip install --no-cache-dir \
3636

3737
# Clone scikit-learn at pinned commit directly into workspace
3838
RUN git clone --depth 1 https://github.com/sg-evals/scikit-learn--cb7e82dd.git /workspace/original && \
39+
cd /workspace/original && \
3940
git submodule update --init --recursive
4041

4142
# Create optimized copy (agent works here)

benchmarks/ccb_test/terraform-code-review-001/environment/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ RUN if ! command -v node &> /dev/null; then \
1717

1818
# Clone hashicorp/terraform at pinned v1.10.3 tag
1919
RUN git clone --depth 1 https://github.com/sg-evals/terraform--v1.10.3.git /workspace && \
20+
cd /workspace && \
2021
git config user.email "agent@example.com" && \
2122
git config user.name "Agent"
2223

benchmarks/ccb_test/vscode-code-review-001/environment/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ RUN if ! command -v node &> /dev/null; then \
1717

1818
# Clone microsoft/vscode at pinned 1.96.0 tag (sparse checkout for relevant files)
1919
RUN git clone --depth 1 https://github.com/sg-evals/vscode--1.96.0.git /workspace && \
20+
cd /workspace && \
2021
git config user.email "agent@example.com" && \
2122
git config user.name "Agent"
2223

0 commit comments

Comments
 (0)