Migrate libbpf ci to GH actions

changes to docker command require to run it in non-interactive mode
This commit is contained in:
Sergei Iudin
2021-06-14 11:16:46 -07:00
committed by Andrii Nakryiko
parent 899c45baa2
commit 5d5af3f07e
7 changed files with 164 additions and 12 deletions

15
.github/actions/vmtest/action.yml vendored Normal file
View File

@@ -0,0 +1,15 @@
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