mirror of
https://github.com/serai-dex/serai.git
synced 2024-11-16 17:07:35 +00:00
Pin mimalloc to the commit hash for 2.1.2
This commit is contained in:
parent
797ed49e7b
commit
6e9ce3ac4f
2 changed files with 2 additions and 0 deletions
|
@ -3,6 +3,7 @@ FROM alpine:latest as mimalloc
|
||||||
RUN apk update && apk upgrade && apk --no-cache add gcc g++ libc-dev make cmake git
|
RUN apk update && apk upgrade && apk --no-cache add gcc g++ libc-dev make cmake git
|
||||||
RUN git clone https://github.com/microsoft/mimalloc && \
|
RUN git clone https://github.com/microsoft/mimalloc && \
|
||||||
cd mimalloc && \
|
cd mimalloc && \
|
||||||
|
git checkout 43ce4bd7fd34bcc730c1c7471c99995597415488 && \
|
||||||
mkdir -p out/secure && \
|
mkdir -p out/secure && \
|
||||||
cd out/secure && \
|
cd out/secure && \
|
||||||
cmake -DMI_SECURE=ON ../.. && \
|
cmake -DMI_SECURE=ON ../.. && \
|
||||||
|
|
|
@ -3,6 +3,7 @@ FROM debian:bookworm-slim as mimalloc
|
||||||
RUN apt update && apt upgrade -y && apt install -y gcc g++ make cmake git
|
RUN apt update && apt upgrade -y && apt install -y gcc g++ make cmake git
|
||||||
RUN git clone https://github.com/microsoft/mimalloc && \
|
RUN git clone https://github.com/microsoft/mimalloc && \
|
||||||
cd mimalloc && \
|
cd mimalloc && \
|
||||||
|
git checkout 43ce4bd7fd34bcc730c1c7471c99995597415488 && \
|
||||||
mkdir -p out/secure && \
|
mkdir -p out/secure && \
|
||||||
cd out/secure && \
|
cd out/secure && \
|
||||||
cmake -DMI_SECURE=ON ../.. && \
|
cmake -DMI_SECURE=ON ../.. && \
|
||||||
|
|
Loading…
Reference in a new issue