Fix webrtc build in actions (#127)
This commit is contained in:
parent
0fe738ee3a
commit
604368e3d2
2 changed files with 4 additions and 3 deletions
4
.github/workflows/appimage.yml
vendored
4
.github/workflows/appimage.yml
vendored
|
|
@ -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.
|
||||
|
|
|
|||
3
.github/workflows/mac-packaged.yml
vendored
3
.github/workflows/mac-packaged.yml
vendored
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue