Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,14 @@ jobs:
libcurl4-openssl-dev \
libwayland-dev libdecor-0-dev

# The libwebrtc artifact ships a hermetic libc++ built from LLVM trunk.
# Distro clang (14 on Ubuntu 22.04, 18 on 24.04) cannot compile its
# headers; the submodule script installs LLVM 21 and exports CC/CXX.
- name: Install clang for libwebrtc
if: runner.os == 'Linux'
shell: bash
run: client-sdk-rust/.github/scripts/install-clang.sh

- name: Install deps (macOS)
if: runner.os == 'macOS'
run: |
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,14 @@ jobs:
libwayland-dev libdecor-0-dev \
gdb jq

# The libwebrtc artifact ships a hermetic libc++ built from LLVM trunk.
# Distro clang (14 on Ubuntu 22.04, 18 on 24.04) cannot compile its
# headers; the submodule script installs LLVM 21 and exports CC/CXX.
- name: Install clang for libwebrtc
if: runner.os == 'Linux'
shell: bash
run: client-sdk-rust/.github/scripts/install-clang.sh

- name: Install deps (macOS)
if: runner.os == 'macOS'
run: |
Expand Down Expand Up @@ -511,6 +519,12 @@ jobs:
libwayland-dev libdecor-0-dev
pip install --break-system-packages gcovr

# The coverage build compiles the Rust FFI too, so it needs the same
# compiler floor as the normal Linux build/test matrices.
- name: Install clang for libwebrtc
shell: bash
run: client-sdk-rust/.github/scripts/install-clang.sh

# ---------- Rust toolchain ----------
- name: Install Rust (stable)
uses: dtolnay/rust-toolchain@6c977a6ca4077a0ceb28ffbe03f59d46e9ac8772
Expand Down
2 changes: 1 addition & 1 deletion client-sdk-rust
Loading