Skip to content
Merged
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
6 changes: 4 additions & 2 deletions .github/workflows/testbench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,21 @@ on:

jobs:
build-and-test:
runs-on: ubuntu-24.10
runs-on: ubuntu-24.04

steps:
- name: Checkout SOF repository (PR source)
uses: actions/checkout@v4
with:
path: sof

# note: libasound-dev needed for testbench build which still
# requires system ALSA headers to be present
Comment on lines +41 to +42
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@singalsu @kv2019i testbench should use the same ALSA version as other tools to avoid any confusion.

- name: apt get
run: sudo apt-get update &&
sudo apt-get -y install valgrind ninja-build
octave octave-signal automake autoconf libtool
gettext linux-headers-6.11.0-8
gettext libasound2-dev

- name: Build Alsa-lib
run: |
Expand Down
Loading