From 40ef3a74594efba9e60365803a413692690a9ce8 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Thu, 30 May 2024 16:54:53 +0200 Subject: [PATCH] do not test libpointmatcher `master`, but 1.3.1 --- Ubuntu/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Ubuntu/Dockerfile b/Ubuntu/Dockerfile index 9a356f5..eca3e9e 100644 --- a/Ubuntu/Dockerfile +++ b/Ubuntu/Dockerfile @@ -46,6 +46,7 @@ RUN git clone https://github.com/ethz-asl/libnabo.git \ RUN git clone https://github.com/ethz-asl/libpointmatcher.git \ && cd libpointmatcher \ + && git switch -d e9a832d \ && sed -i 's/Boost_USE_STATIC_LIBS ON/Boost_USE_STATIC_LIBS OFF/' CMakeLists.txt \ && SRC_DIR=`pwd` \ && BUILD_DIR=${SRC_DIR}/build \ @@ -53,6 +54,7 @@ RUN git clone https://github.com/ethz-asl/libpointmatcher.git \ && cmake -DBUILD_SHARED_LIBS=ON -DCMAKE_BUILD_TYPE=Release -DPOINTMATCHER_BUILD_EXAMPLES=OFF -DPOINTMATCHER_BUILD_EVALUATIONS=OFF ${SRC_DIR} \ && make -j"$(nproc)" && make install \ && cd ../.. && rm -rf libpointmatcher + # Commit e9a832d is 1.3.1-178-ge9a832d RUN git clone --recursive https://github.com/oxfordcontrol/osqp \ && cd ./osqp \