mirror of
https://github.com/embedd-actions/arm-gcc-ci.git
synced 2024-12-26 08:52:15 +03:00
16 lines
278 B
YAML
16 lines
278 B
YAML
|
name: 'ARM GCC build'
|
||
|
description: 'Building arm projects'
|
||
|
inputs:
|
||
|
command:
|
||
|
description: 'Command'
|
||
|
required: true
|
||
|
default: arm-none-eabi-gcc --version
|
||
|
runs:
|
||
|
using: 'docker'
|
||
|
image: 'Dockerfile'
|
||
|
args:
|
||
|
- /bin/bash
|
||
|
- -c
|
||
|
- ${{ inputs.command }}
|
||
|
|