mirror of
https://github.com/embedd-actions/arm-gcc-ci.git
synced 2024-12-26 00:42:22 +03:00
17 lines
330 B
YAML
17 lines
330 B
YAML
name: 'ARM GCC build'
|
|
description: 'Building arm-gcc projects'
|
|
branding:
|
|
color: blue
|
|
icon: microchip
|
|
inputs:
|
|
command:
|
|
description: 'Command'
|
|
required: true
|
|
default: arm-none-eabi-gcc --version
|
|
runs:
|
|
using: 'docker'
|
|
image: 'docker://sergeyladanov/arm-gcc:12.3.rel1'
|
|
args:
|
|
- ${{ inputs.command }}
|
|
|