Files
libbpf/.github/actions/vmtest/action.yml
Sergei Iudin 5d5af3f07e Migrate libbpf ci to GH actions
changes to docker command require to run it in non-interactive mode
2021-06-15 14:13:57 -07:00

16 lines
321 B
YAML

name: 'vmtest'
description: 'Build + run vmtest'
inputs:
kernel:
description: 'kernel or LATEST'
required: true
default: 'LATEST'
runs:
using: "composite"
steps:
- run: |
source /tmp/ci_setup
export KERNEL=${{ inputs.kernel }}
$CI_ROOT/vmtest/run_vmtest.sh
shell: bash