codex: fix CI failure on PR #16805

Install cmake on Linux and macOS Bazel runners so audiopus_sys build scripts can build bundled Opus.

Co-authored-by: Codex <noreply@openai.com>
This commit is contained in:
Ahmed Ibrahim
2026-04-04 12:51:33 -07:00
parent 175d831ff4
commit a40422b85f

View File

@@ -38,6 +38,18 @@ runs:
shell: pwsh
run: Copy-Item (Get-Command dotslash).Source -Destination "$env:LOCALAPPDATA\Microsoft\WindowsApps\dotslash.exe"
- name: Install CMake for Bazel Rust build scripts (Linux)
if: runner.os == 'Linux'
shell: bash
run: |
sudo DEBIAN_FRONTEND=noninteractive apt-get update
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends cmake
- name: Install CMake for Bazel Rust build scripts (macOS)
if: runner.os == 'macOS'
shell: bash
run: brew install cmake
- name: Set up Bazel
uses: bazelbuild/setup-bazelisk@v3