From de9ff3b30cfe6b0f7aa3f3c9b0a193cc085d4f9d Mon Sep 17 00:00:00 2001 From: Blake Devcich Date: Tue, 28 May 2024 10:09:53 -0500 Subject: [PATCH] Use master for dcp Signed-off-by: Blake Devcich --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8e64d61..c906b00 100644 --- a/Dockerfile +++ b/Dockerfile @@ -54,7 +54,10 @@ RUN wget https://github.com/llnl/dtcmp/releases/download/v1.1.1/dtcmp-1.1.1.tar. # Until a new release of mpifileutils is cut, we need to use a tagged commit on # our fork to include our dcp changes (i.e. --uid, --gid) -RUN git clone --depth 1 https://github.com/nearnodeflash/mpifileutils.git --branch nnf-stable \ +# TODO: Try to use the latest known commit on master (0a4c530). Undo this. +#RUN git clone --depth 1 https://github.com/nearnodeflash/mpifileutils.git --branch nnf-stable \ +RUN git clone --depth 1 https://github.com/hpc/mpifileutils.git --branch master \ + && git checkout 0a4c530 \ && mkdir build \ && cd build \ && cmake ../mpifileutils \