diff --git a/.github/workflows/mac.yml b/.github/workflows/mac.yml index 94c164fcf..21e486f17 100644 --- a/.github/workflows/mac.yml +++ b/.github/workflows/mac.yml @@ -366,9 +366,9 @@ jobs: run: | cd $LibrariesPath - git clone https://github.com/telegramdesktop/openal-soft.git + git clone $GIT/kcat/openal-soft.git cd openal-soft - git checkout fix_mono + git checkout 3970252da9 cd build CFLAGS="$UNGUARDED" CPPFLAGS="$UNGUARDED" cmake \ @@ -481,7 +481,7 @@ jobs: run: | cd $LibrariesPath - git clone $GIT/desktop-app/tg_owt.git + git clone --recursive $GIT/desktop-app/tg_owt.git mkdir -p tg_owt/out/Debug cd tg_owt/out/Debug cmake -G Ninja -DCMAKE_BUILD_TYPE=Debug \ diff --git a/.github/workflows/win.yml b/.github/workflows/win.yml index 510ce788e..0f7e70d91 100644 --- a/.github/workflows/win.yml +++ b/.github/workflows/win.yml @@ -211,10 +211,8 @@ jobs: run: | %VC% - git clone %GIT%/telegramdesktop/openal-soft.git - cd openal-soft - git checkout fix_capture - cd build + git clone -b openal-soft-1.21.0 --depth=1 $GIT/kcat/openal-soft.git + cd openal-soft\build cmake .. ^ -G "Visual Studio 16 2019" ^ -A Win32 ^ @@ -367,7 +365,7 @@ jobs: run: | %VC% - git clone %GIT%/desktop-app/tg_owt.git + git clone --recursive %GIT%/desktop-app/tg_owt.git mkdir tg_owt\out\Debug cd tg_owt\out\Debug cmake -G Ninja ^ diff --git a/Telegram/build/docker/centos_env/Dockerfile b/Telegram/build/docker/centos_env/Dockerfile index eeb531458..e3f3b23f3 100644 --- a/Telegram/build/docker/centos_env/Dockerfile +++ b/Telegram/build/docker/centos_env/Dockerfile @@ -486,7 +486,7 @@ COPY --from=opus ${LibrariesPath}/opus-cache / COPY --from=ffmpeg ${LibrariesPath}/ffmpeg-cache / COPY --from=openssl ${LibrariesPath}/openssl-cache / -RUN git clone $GIT/desktop-app/tg_owt.git +RUN git clone --recursive $GIT/desktop-app/tg_owt.git WORKDIR tg_owt RUN git checkout c73a471