Fix webrtc build in actions (#127)

This commit is contained in:
ilya-fedin 2020-12-24 19:19:01 +04:00 committed by GitHub
parent 0fe738ee3a
commit 604368e3d2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 3 deletions

View file

@ -574,9 +574,9 @@ jobs:
run: |
cd $LibrariesPath
git clone $GIT/desktop-app/tg_owt.git
git clone --recursive $GIT/desktop-app/tg_owt.git
cd tg_owt
cmake -B build . -DCMAKE_BUILD_TYPE=Release
cmake -B build . -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=OFF
cmake --build build -j$(nproc)
- name: Kotatogram Desktop build.

View file

@ -238,12 +238,13 @@ jobs:
run: |
cd $LibrariesPath
git clone --depth=1 $GIT/desktop-app/tg_owt.git
git clone --recursive --depth=1 $GIT/desktop-app/tg_owt.git
cd tg_owt
cmake -B build . \
-GNinja \
-DCMAKE_BUILD_TYPE=Debug \
-DBUILD_SHARED_LIBS=OFF \
-DTG_OWT_PACKAGED_BUILD_FFMPEG_STATIC=ON
cmake --build build -j$(sysctl -n hw.logicalcpu)