mirror of
https://github.com/embedd-actions/arm-gcc-ci.git
synced 2024-12-25 16:32:14 +03:00
16 lines
283 B
YAML
16 lines
283 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: 'Action.Dockerfile'
|
|
args:
|
|
- /bin/sh
|
|
- -c
|
|
- ${{ inputs.command }}
|
|
|