From 0d9ecc9ceb82c3e99f8d1fe2c3de2dfbcc0f44cd Mon Sep 17 00:00:00 2001 From: andrey Date: Wed, 29 Jul 2020 14:36:21 +0300 Subject: [PATCH] Dockerfile, clone only one branch --- docker/android-libs/Dockerfile | 2 +- docker/debian-libs/Dockerfile | 2 +- docker/osx-libs/Dockerfile | 2 +- docker/pi-libs/Dockerfile | 2 +- docker/windows-libs/Dockerfile | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docker/android-libs/Dockerfile b/docker/android-libs/Dockerfile index 6c68e66..aa9cda8 100644 --- a/docker/android-libs/Dockerfile +++ b/docker/android-libs/Dockerfile @@ -5,7 +5,7 @@ ARG LIBS_BUILD_NUMBER=9999 ARG JOBS_COUNT=4 WORKDIR /soft -RUN git clone -b release --depth 1 --recursive https://git.shs.tools/SHS/libs.git +RUN git clone -b release --single-branch --depth 1 --recursive https://git.shs.tools/SHS/libs.git WORKDIR /soft/libs_build_host RUN cmake -DICU=0 -DCROSSTOOLS=1 -DBUILD_NUMBER=${LIBS_BUILD_NUMBER} ../libs \ diff --git a/docker/debian-libs/Dockerfile b/docker/debian-libs/Dockerfile index af6ae8a..ab9f0e0 100644 --- a/docker/debian-libs/Dockerfile +++ b/docker/debian-libs/Dockerfile @@ -5,7 +5,7 @@ ARG LIBS_BUILD_NUMBER=9999 ARG JOBS_COUNT=4 WORKDIR /soft -RUN git clone -b release --depth 1 --recursive https://git.shs.tools/SHS/libs.git +RUN git clone -b release --single-branch --depth 1 --recursive https://git.shs.tools/SHS/libs.git WORKDIR /soft/libs_build_debian RUN cmake -DICU=0 -DLIB=1 -DQGLENGINE=1 -DQGLVIEW=1 -DBUILD_NUMBER=${LIBS_BUILD_NUMBER} ../libs \ diff --git a/docker/osx-libs/Dockerfile b/docker/osx-libs/Dockerfile index 551341e..8520227 100644 --- a/docker/osx-libs/Dockerfile +++ b/docker/osx-libs/Dockerfile @@ -5,7 +5,7 @@ ARG LIBS_BUILD_NUMBER=9999 ARG JOBS_COUNT=4 WORKDIR /soft -RUN git clone -b release --depth 1 --recursive https://git.shs.tools/SHS/libs.git +RUN git clone -b release --single-branch --depth 1 --recursive https://git.shs.tools/SHS/libs.git WORKDIR /soft/libs_build_host RUN cmake -DICU=0 -DCROSSTOOLS=1 -DBUILD_NUMBER=${LIBS_BUILD_NUMBER} ../libs \ diff --git a/docker/pi-libs/Dockerfile b/docker/pi-libs/Dockerfile index 77a0b84..b1592cc 100644 --- a/docker/pi-libs/Dockerfile +++ b/docker/pi-libs/Dockerfile @@ -5,7 +5,7 @@ ARG LIBS_BUILD_NUMBER=9999 ARG JOBS_COUNT=4 WORKDIR /soft -RUN git clone -b release --depth 1 --recursive https://git.shs.tools/SHS/libs.git +RUN git clone -b release --single-branch --depth 1 --recursive https://git.shs.tools/SHS/libs.git WORKDIR /soft/libs_build_host RUN cmake -DICU=0 -DCROSSTOOLS=1 -DBUILD_NUMBER=${LIBS_BUILD_NUMBER} ../libs \ diff --git a/docker/windows-libs/Dockerfile b/docker/windows-libs/Dockerfile index c2bcabb..29da92d 100644 --- a/docker/windows-libs/Dockerfile +++ b/docker/windows-libs/Dockerfile @@ -5,7 +5,7 @@ ARG LIBS_BUILD_NUMBER=9999 ARG JOBS_COUNT=4 WORKDIR /soft -RUN git clone -b release --depth 1 --recursive https://git.shs.tools/SHS/libs.git +RUN git clone -b release --single-branch --depth 1 --recursive https://git.shs.tools/SHS/libs.git WORKDIR /soft/libs_build_host RUN cmake -DICU=0 -DCROSSTOOLS=1 -DBUILD_NUMBER=${LIBS_BUILD_NUMBER} ../libs \