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
7 changes: 7 additions & 0 deletions devops/actions/run-tests/benchmark/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,14 @@ runs:
- name: Install perf in version matching the host kernel
shell: bash
run: |
# Install perf in version matching the host kernel
echo "::group::install_linux_tools"
if [ "$RUNNER_TAG" = '["BMG_PERF"]' ]; then
echo "Adding repositories for Ubuntu 25.10 (Questing) on BMG_PERF runner"
echo "deb http://archive.ubuntu.com/ubuntu/ questing main restricted universe multiverse" | sudo tee /etc/apt/sources.list.d/questing.list
echo "deb http://archive.ubuntu.com/ubuntu/ questing-updates main restricted universe multiverse" | sudo tee -a /etc/apt/sources.list.d/questing.list
echo "deb http://security.ubuntu.com/ubuntu/ questing-security main restricted universe multiverse" | sudo tee -a /etc/apt/sources.list.d/questing.list
fi
sudo apt-get update
sudo apt-get install -y linux-tools-$(uname -r)
echo "::endgroup::"
Expand Down
Loading