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

16
.github/actions/debian/action.yml vendored Normal file
View File

@@ -0,0 +1,16 @@
name: 'debian'
description: 'Build'
inputs:
target:
description: 'Run target'
required: true
runs:
using: "composite"
steps:
- run: |
source /tmp/ci_setup
bash -x $CI_ROOT/managers/debian.sh SETUP
bash -x $CI_ROOT/managers/debian.sh ${{ inputs.target }}
bash -x $CI_ROOT/managers/debian.sh CLEANUP
shell: bash