Skip to content

Commit 75e82db

Browse files
fix CI: bpftool is a virtual package on Ubuntu, install linux-tools instead
1 parent 4d07bf8 commit 75e82db

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,10 @@ jobs:
2424
- name: Install system dependencies
2525
run: |
2626
sudo apt-get update
27-
sudo apt-get install -y clang llvm libclang-dev bpftool
27+
# bpftool isn't an installable package by itself on Ubuntu: it's a
28+
# virtual package provided by linux-tools-common + a kernel-flavor
29+
# linux-tools-<flavor> package.
30+
sudo apt-get install -y clang llvm libclang-dev linux-tools-common linux-tools-generic
2831
2932
- name: Install uv
3033
run: pip install uv

0 commit comments

Comments
 (0)