Skip to content

Commit

Permalink
Test bpfcc tools
Browse files Browse the repository at this point in the history
  • Loading branch information
maroontress-tomohisa committed Feb 7, 2024
1 parent c9e7ecb commit 9ffa1ce
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/bcc-tools.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Ubuntu BCC tools

on:
push:
branches: [ "bcc-tools" ]
pull_request:
branches: [ "bcc-tools" ]

jobs:
build:
timeout-minutes: 30
runs-on: ubuntu-latest

steps:
- name: Install bpfcc-tools
run: sudo apt-get install bpfcc-tools
- name: vfs
continue-on-error: true
run: sudo funccount-bpfcc -d 5 'vfs_*'
- name: tcp
continue-on-error: true
run: sudo funccount-bpfcc -d 5 'tcp_*'
- name: block i/o
continue-on-error: true
run: sudo funccount-bpfcc -d 5 't:block:*'
- name: libc getaddrinfo()
continue-on-error: true
run: sudo funccount-bpfcc -d 5 'c:getaddrinfo'

0 comments on commit 9ffa1ce

Please sign in to comment.