mirror of
https://github.com/embedd-actions/esp-idf-ci.git
synced 2024-12-26 00:42:08 +03:00
15 lines
244 B
YAML
15 lines
244 B
YAML
|
name: 'ESP-IDF build'
|
||
|
description: 'Building ESP-IDF projects'
|
||
|
inputs:
|
||
|
IDF_TARGET:
|
||
|
description: 'Target device'
|
||
|
required: true
|
||
|
default: esp32
|
||
|
runs:
|
||
|
using: 'docker'
|
||
|
image: 'Dockerfile'
|
||
|
args:
|
||
|
- idf.py
|
||
|
- build
|
||
|
|