ci: drop sudo for libopus install (act job containers run as root)
Some checks failed
CI / fmt (pull_request) Successful in 1m10s
CI / clippy (pull_request) Successful in 6m41s
CI / test (1.85) (pull_request) Successful in 8m54s
CI / test (stable) (pull_request) Successful in 9m44s
CI / deny (pull_request) Failing after 11m23s

This commit is contained in:
opencode controller
2026-07-01 00:22:31 -04:00
parent 2bc9877105
commit c86bb19c0e

View File

@@ -29,7 +29,7 @@ jobs:
with:
components: clippy
- name: Install libopus (media crate FFI dep)
run: sudo apt-get update && sudo apt-get install -y libopus-dev
run: apt-get update && apt-get install -y libopus-dev
- uses: Swatinem/rust-cache@v2
- run: cargo clippy --all -- -D warnings
@@ -44,7 +44,7 @@ jobs:
with:
toolchain: ${{ matrix.toolchain }}
- name: Install libopus (media crate FFI dep)
run: sudo apt-get update && sudo apt-get install -y libopus-dev
run: apt-get update && apt-get install -y libopus-dev
- uses: Swatinem/rust-cache@v2
- run: cargo test --all