Skip to content

fix: test ebpf ci #2752

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 23, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/test_ebpf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
with:
go-version: 1.21.3
- name: Install qemu
run: sudo apt-get -y install qemu-system-x86
run: sudo apt-get update && sudo apt-get -y install qemu-system-x86
- name: Test
run: EBPF_RUN_IN_VM=1 make -C ./ebpf go/test/amd64
test_ebpf_arm64_qemu:
Expand All @@ -52,6 +52,6 @@ jobs:
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Install qemu
run: sudo apt-get -y install qemu-system-aarch64
run: sudo apt-get update && sudo apt-get -y install qemu-system-aarch64
- name: Test
run: EBPF_RUN_IN_VM=1 make -C ./ebpf go/test/arm64