diff --git a/.github/workflows/default-bare.yml b/.github/workflows/default-bare.yml index 3594ab3..608c10d 100644 --- a/.github/workflows/default-bare.yml +++ b/.github/workflows/default-bare.yml @@ -104,3 +104,15 @@ jobs: sudo -u syslog /usr/local/scripts/falco_report.sh if: ${{ always() }} continue-on-error: true + - name: After script - debug + run: | + # https://github.com/falcosecurity/falco/issues/2357 + # https://github.com/falcosecurity/falco/issues/2792 + ls -la /sys/kernel/btf/vmlinux + strings /sys/kernel/btf/vmlinux | grep -e BPF_TRACE_RAW_TP -e BPF_TRACE_FENTRY + grep DEBUG_INFO /boot/config-* + apt-get install -y linux-tools-generic + bpftool feature probe kernel | grep -e "map_type ringbuf is available" -e "program_type tracing is available" + dpkg -l | grep libbpf + if: ${{ always() }} + continue-on-error: true