Skip to content

Commit b9cfe9b

Browse files
authored
Merge 'fix dockerfile to add dbhash tool' from Pedro Muniz
This was failing to build on main Reviewed-by: Mikaël Francoeur (@LeMikaelF) Closes #4866
2 parents e3f141e + 53b6e00 commit b9cfe9b

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

Dockerfile.antithesis

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ COPY ./testing/concurrent-simulator ./testing/concurrent-simulator/
3939
COPY ./testing/differential-oracle ./testing/differential-oracle/
4040
COPY ./sdk-kit ./sdk-kit/
4141
COPY ./sdk-kit-macros ./sdk-kit-macros/
42+
COPY ./tools ./tools/
4243
RUN cargo chef prepare --bin turso_stress --recipe-path recipe.json
4344

4445
#
@@ -85,6 +86,7 @@ COPY --from=planner /app/testing/concurrent-simulator ./testing/concurrent-simul
8586
COPY --from=planner /app/testing/differential-oracle ./testing/differential-oracle
8687
COPY --from=planner /app/sdk-kit ./sdk-kit/
8788
COPY --from=planner /app/sdk-kit-macros ./sdk-kit-macros/
89+
COPY --from=planner /app/tools ./tools/
8890

8991
RUN if [ "$antithesis" = "true" ]; then \
9092
cp /opt/antithesis/libvoidstar.so /usr/lib/libvoidstar.so && \

testing/simulator/simulator-docker-runner/Dockerfile.simulator

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ COPY testing/concurrent-simulator ./testing/concurrent-simulator
3333
COPY testing/differential-oracle ./testing/differential-oracle/
3434
COPY sdk-kit ./sdk-kit/
3535
COPY sdk-kit-macros ./sdk-kit-macros/
36+
COPY tools ./tools/
3637
RUN cargo chef prepare --bin limbo_sim --recipe-path recipe.json
3738

3839
#
@@ -54,6 +55,7 @@ COPY --from=planner /app/testing/simulator ./testing/simulator/
5455
COPY --from=planner /app/packages ./packages/
5556
COPY --from=planner /app/sql_generation ./sql_generation/
5657
COPY --from=planner /app/testing/differential-oracle ./testing/differential-oracle/
58+
COPY --from=planner /app/tools ./tools/
5759
COPY --from=planner /app/Cargo.toml /app/Cargo.lock ./
5860

5961
RUN cargo build --bin limbo_sim --release

testing/sqlancer/sqlancer-runner/Dockerfile.sqlancer

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ COPY perf/throughput/rusqlite ./perf/throughput/rusqlite
3939
COPY perf/throughput/turso ./perf/throughput/turso
4040
COPY sdk-kit ./sdk-kit/
4141
COPY sdk-kit-macros ./sdk-kit-macros/
42+
COPY tools ./tools/
4243
RUN cargo chef prepare --recipe-path recipe.json
4344

4445
#
@@ -71,6 +72,8 @@ COPY --from=planner /app/perf/throughput/rusqlite ./perf/throughput/rusqlite
7172
COPY --from=planner /app/perf/throughput/turso ./perf/throughput/turso
7273
COPY --from=planner /app/sdk-kit ./sdk-kit/
7374
COPY --from=planner /app/sdk-kit-macros ./sdk-kit-macros/
75+
COPY --from=planner /app/tools ./tools/
76+
7477

7578
# Build native library for Linux x86_64
7679
WORKDIR /app/bindings/java

0 commit comments

Comments
 (0)