Skip to content

Commit

Permalink
ci(cql-stress): use newest cql-stress benchmarking tool
Browse files Browse the repository at this point in the history
This new version contains following changes compared to the previous one:
- "c-s: Implement insert operation for user profiles" (PR#93)
- "cargo: bump rust-driver version to 0.14" (PR#102)

(cherry picked from commit c0ac532)
  • Loading branch information
vponomaryov authored and actions-user committed Jan 28, 2025
1 parent 9d10f8e commit bc10d71
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
cql-stress-cassandra-stress:
<<<<<<< HEAD
image: 'docker.io/scylladb/hydra-loaders:cql-stress-cassandra-stress-20240718'
||||||| parent of c0ac5329f (ci(cql-stress): use newest cql-stress benchmarking tool)
image: docker.io/scylladb/hydra-loaders:cql-stress-cassandra-stress-20240718
=======
image: docker.io/scylladb/hydra-loaders:cql-stress-cassandra-stress-20250127
>>>>>>> c0ac5329f (ci(cql-stress): use newest cql-stress benchmarking tool)
18 changes: 18 additions & 0 deletions docker/cql-stress-cassandra-stress/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
FROM rust:1.84-bookworm AS builder

ARG BRANCH
ARG REPO

ENV BRANCH=${BRANCH:-master}
ENV REPO=${REPO:-https://github.com/scylladb/cql-stress.git}

RUN git clone ${REPO} -b ${BRANCH}

RUN cd cql-stress && cargo build --release --bin cql-stress-cassandra-stress

FROM debian:bookworm-slim
RUN apt update && apt -y install \
openssl \
&& rm -rf /var/lib/apt/lists/*

COPY --from=builder /cql-stress/target/release/cql-stress-cassandra-stress /usr/local/bin/
1 change: 1 addition & 0 deletions docker/cql-stress-cassandra-stress/image
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
scylladb/hydra-loaders:cql-stress-cassandra-stress-20250127

0 comments on commit bc10d71

Please sign in to comment.