diff options
Diffstat (limited to 'lib/libbpf/.github/actions/debian/action.yml')
-rw-r--r-- | lib/libbpf/.github/actions/debian/action.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/libbpf/.github/actions/debian/action.yml b/lib/libbpf/.github/actions/debian/action.yml new file mode 100644 index 0000000..23d48ec --- /dev/null +++ b/lib/libbpf/.github/actions/debian/action.yml @@ -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 + |