We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6836cf commit d29f181Copy full SHA for d29f181
.github/workflows/coverity.yml
@@ -25,6 +25,13 @@ jobs:
25
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
26
# Reuse the setup phase of the unit test script to avoid code duplication
27
- name: Install build dependencies
28
- run: sudo -E .github/workflows/unit-tests.sh SETUP
+ run: |
29
+ sudo -E .github/workflows/unit-tests.sh SETUP
30
+ # TODO: drop after we switch to ubuntu 26.04
31
+ bpftool_binary=$(find /usr/lib/linux-tools/ /usr/lib/linux-tools-* -name 'bpftool' -perm /u=x 2>/dev/null | sort -r | head -n1)
32
+ if [ -n "$bpftool_binary" ]; then
33
+ sudo rm -f /usr/{bin,sbin}/bpftool
34
+ sudo ln -s "$bpftool_binary" /usr/bin/
35
+ fi
36
- name: Build & upload the results
37
run: tools/coverity.sh
0 commit comments