Skip to content

Commit 1bda316

Browse files
committed
kernel-test: enable traffic monitoring on x86_64
See libbpf/ci PRs: * libbpf/ci#168 * libbpf/ci#172 * libbpf/ci#174 Signed-off-by: Ihor Solodrai <[email protected]>
1 parent 87b0824 commit 1bda316

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

.github/workflows/gcc-bpf.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
run: zstd -d -T0 vmlinux-${{ inputs.arch }}-${{ inputs.toolchain_full }}.tar.zst --stdout | tar -xf -
7676

7777
- name: Setup build environment
78-
uses: libbpf/ci/setup-build-env@v3
78+
uses: libbpf/ci/setup-build-env@main
7979
with:
8080
arch: ${{ inputs.arch }}
8181
llvm-version: ${{ inputs.llvm-version }}

.github/workflows/kernel-build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ jobs:
106106
repo-root: ${{ env.REPO_ROOT }}
107107

108108
- name: Setup build environment
109-
uses: libbpf/ci/setup-build-env@v3
109+
uses: libbpf/ci/setup-build-env@main
110110
with:
111111
arch: ${{ inputs.arch }}
112112
llvm-version: ${{ inputs.llvm-version }}

.github/workflows/kernel-test.yml

+9-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
run: zstd -d -T0 vmlinux-${{ inputs.arch }}-${{ inputs.toolchain_full }}.tar.zst --stdout | tar -xf -
6666

6767
- name: Run selftests
68-
uses: libbpf/ci/run-vmtest@v3
68+
uses: theihor/libbpf-ci/run-vmtest@traffic-monitoring-on-x86
6969
# https://github.com/actions/runner/issues/1483#issuecomment-1031671517
7070
# booleans are weird in GH.
7171
continue-on-error: ${{ fromJSON(env.CONTINUE_ON_ERROR) }}
@@ -76,6 +76,7 @@ jobs:
7676
KERNEL_TEST: ${{ inputs.test }}
7777
SELFTESTS_BPF: ${{ github.workspace }}/selftests/bpf
7878
VMTEST_CONFIGS: ${{ github.workspace }}/ci/vmtest/configs
79+
TEST_PROGS_TRAFFIC_MONITOR: ${{ inputs.arch == 'x86_64' && 'true' || '' }}
7980
TEST_PROGS_WATCHDOG_TIMEOUT: 600
8081
with:
8182
arch: ${{ inputs.arch }}
@@ -86,3 +87,10 @@ jobs:
8687
# Here we must use kbuild-output local to the repo, because
8788
# it was extracted from the artifacts.
8889
kbuild-output: ${{ env.REPO_ROOT }}/kbuild-output
90+
91+
- if: ${{ always() }}
92+
uses: actions/upload-artifact@v4
93+
with:
94+
name: tmon-logs-${{ inputs.arch }}-${{ inputs.toolchain_full }}-${{ inputs.test }}
95+
if-no-files-found: ignore
96+
path: /tmp/tmon_pcap/*

0 commit comments

Comments
 (0)