diff --git a/docker/all/Dockerfile b/docker/all/Dockerfile index af6c197a1f282876462c826982706c155b8531dc..597b18bb779f98a448a189ddb85fe6bd40af8765 100644 --- a/docker/all/Dockerfile +++ b/docker/all/Dockerfile @@ -14,13 +14,13 @@ RUN bash /dist.sh ARG PARALLEL=1 ENV CTEST_PARALLEL_LEVEL=${PARALLEL} -ADD https://api.github.com/repos/nim65s/eigenpy/commits/topic/multipy2 / +ADD https://api.github.com/repos/nim65s/eigenpy/commits/topic/multipy / RUN /build.sh eigenpy -ADD https://api.github.com/repos/nim65s/hpp-fcl/commits/topic/multipy2 / +ADD https://api.github.com/repos/nim65s/hpp-fcl/commits/topic/multipy / RUN /build.sh hpp-fcl -ADD https://api.github.com/repos/nim65s/pinocchio/commits/topic/multipy2 / +ADD https://api.github.com/repos/nim65s/pinocchio/commits/topic/multipy / RUN /build.sh pinocchio ADD run.sh run.py / diff --git a/docker/all/build.sh b/docker/all/build.sh index 438753b317343fe1f93ea6849fa78355ab06b771..598b008832a7abe537b10740a8ac73633a4db889 100755 --- a/docker/all/build.sh +++ b/docker/all/build.sh @@ -13,7 +13,7 @@ then fi build() { - git clone --recursive --depth 1 --branch topic/multipy2 "https://github.com/nim65s/$PROJECT.git" + git clone --recursive --depth 1 --branch topic/multipy "https://github.com/nim65s/$PROJECT.git" mkdir "$PROJECT"/build{,2,3} cd "/src/$PROJECT/build" || exit 1 cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=ON -DCMAKE_CXX_STANDARD=11 -DINSTALL_DOCUMENTATION=OFF \