Skip to content

Add dynamic extraction of a parameter attribute #1030

Add dynamic extraction of a parameter attribute

Add dynamic extraction of a parameter attribute #1030

Workflow file for this run

name: BPF Unit Tests
on:
pull_request:
paths:
- 'bpf/**'
- '.github/workflows/bpf-unit-tests.yml'
push:
branches:
- main
paths:
- 'bpf/**'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-22.04, ubuntu-22.04-arm64 ]
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Install Go
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
with:
# renovate: datasource=golang-version depName=go
go-version: '1.23.4'
- name: Install LLVM
run: |
sudo apt-get update
sudo apt-get -y install clang llvm
- name: Run BPF unit test
run: make bpf-test BPFGOTESTFLAGS="-v"