blob: 23d48ec01ba0419f661652c41d085f5bbe4925b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
|