1name: 'debian' 2description: 'Build' 3inputs: 4 target: 5 description: 'Run target' 6 required: true 7runs: 8 using: "composite" 9 steps: 10 - run: | 11 source /tmp/ci_setup 12 bash -x $CI_ROOT/managers/debian.sh SETUP 13 bash -x $CI_ROOT/managers/debian.sh ${{ inputs.target }} 14 bash -x $CI_ROOT/managers/debian.sh CLEANUP 15 shell: bash 16 17