-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c9e7ecb
commit 9ffa1ce
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |