mirror of
https://github.com/espressif/esp-mqtt.git
synced 2026-06-05 21:04:46 +00:00
37 lines
974 B
YAML
37 lines
974 B
YAML
name: Build app an run on target
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
idf_version:
|
|
required: true
|
|
type: string
|
|
target:
|
|
required: true
|
|
type: string
|
|
app_name:
|
|
type: string
|
|
required: true
|
|
app_path:
|
|
type: string
|
|
required: true
|
|
|
|
|
|
jobs:
|
|
build-app:
|
|
uses: "./.github/workflows/build-app.yml"
|
|
with:
|
|
idf_version: ${{inputs.idf_version}}
|
|
target: ${{inputs.target}}
|
|
app_name: ${{inputs.app_name}}
|
|
app_path: ${{inputs.app_path}}
|
|
|
|
# run-on-target:
|
|
# needs: build-app
|
|
# uses: "./.github/workflows/run-on-target.yml"
|
|
# with:
|
|
# idf_version: ${{inputs.idf_version}}
|
|
# target: ${{inputs.target}}
|
|
# app_name: ${{inputs.app_name}}
|
|
# app_path: ${{inputs.app_path}}
|