mirror of
https://github.com/openai/codex.git
synced 2026-09-17 12:23:33 +00:00
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:
12
.github/actions/setup-bazel-ci/action.yml
vendored
12
.github/actions/setup-bazel-ci/action.yml
vendored
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user