Initial exploration of GH actions.
This commit is contained in:
parent
c1cc46c3b2
commit
41115274e1
3 changed files with 112 additions and 0 deletions
16
.github/actions/west/action.yml
vendored
Normal file
16
.github/actions/west/action.yml
vendored
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
name: "Zephyr West"
|
||||
description: 'Action incorporating Zephyr dependencies and West build tool'
|
||||
inputs:
|
||||
command: # id of input
|
||||
description: 'Which west command to execute'
|
||||
required: true
|
||||
default: 'build'
|
||||
command-args: # id of input
|
||||
description: 'Extra arguments for the west command'
|
||||
required: false
|
||||
runs:
|
||||
using: 'docker'
|
||||
image: 'Dockerfile'
|
||||
args:
|
||||
- ${{ inputs.command }}
|
||||
- ${{ inputs.command-args }}
|
||||
Loading…
Add table
Add a link
Reference in a new issue