You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: 'Run eBPF programs against a range of kernels.'
3
+
4
+
inputs:
5
+
arch:
6
+
description: 'Architecture to test (e.g., amd64, arm64)'
7
+
required: true
8
+
type: string
9
+
args:
10
+
description: 'Command line to pass to bpfvalidator'
11
+
required: true
12
+
type: string
13
+
fail_on_validation:
14
+
description: 'fail the action if validation fails'
15
+
required: false
16
+
default: true
17
+
type: boolean
18
+
skip_dependencies:
19
+
description: 'skip installing dependencies'
20
+
required: false
21
+
default: false
22
+
type: boolean
23
+
24
+
outputs:
25
+
report:
26
+
description: "Report of the validation"
27
+
value: ${{ steps.run-validator.outputs.report }}
28
+
outcome:
29
+
description: "Outcome of the validation"
30
+
value: ${{ steps.run-validator.outputs.outcome }}
31
+
32
+
runs:
33
+
using: "composite"
34
+
steps:
35
+
# we hardcode the vng version here, since dependencies and build process could change among different versions, we shouldn't let the user choose the version
0 commit comments