Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,4 @@

# rust target
/target
/PLAN.md
5 changes: 3 additions & 2 deletions benchmark/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@ FROM ubuntu:24.04
RUN apt-get update && apt-get install -y --no-install-recommends git gpg ca-certificates python3-numpy
RUN git clone https://github.com/daanx/mimalloc-bench &&\
cd mimalloc-bench && \
git reset --hard a4ce904286365c7adfba54f0eea3a2df3fc95bd1
git reset --hard fcb165f028667d68389437c113b9cc1a05a32e10

WORKDIR /mimalloc-bench

# Install dependencies
RUN ./build-bench-env.sh packages

Expand All @@ -19,7 +20,7 @@ RUN ./build-bench-env.sh bench
RUN ./build-bench-env.sh redis

RUN ./build-bench-env.sh rocksdb \
&& find /mimalloc-bench/extern/rocksdb-8.1.1 -name "*.o" -delete
&& find /mimalloc-bench/extern/rocksdb-10.10.1 -name "*.o" -delete

RUN ./build-bench-env.sh lean \
&& find /mimalloc-bench/extern/lean -name "*.o" -delete
Expand Down
Loading