Files
Peter Siegmund cf49a99e22
Some checks failed
Thomas the tank engine - Build the ESP-IDF Project / build (esp32, latest) (push) Failing after 35s
Thomas the tank engine - Build the ESP-IDF Project / build (esp32, release-v5.3) (push) Failing after 14s
Thomas the tank engine - Build the ESP-IDF Project / build (esp32, release-v5.4) (push) Failing after 15s
Thomas the tank engine - Build the ESP-IDF Project / build (esp32c3, latest) (push) Failing after 0s
Thomas the tank engine - Build the ESP-IDF Project / build (esp32c3, release-v5.3) (push) Failing after 0s
Thomas the tank engine - Build the ESP-IDF Project / build (esp32c3, release-v5.4) (push) Failing after 0s
Thomas the tank engine - Build the ESP-IDF Project / build (esp32c5, latest) (push) Failing after 0s
Thomas the tank engine - Build the ESP-IDF Project / build (esp32c5, release-v5.3) (push) Failing after 0s
Thomas the tank engine - Build the ESP-IDF Project / build (esp32c5, release-v5.4) (push) Failing after 0s
Thomas the tank engine - Build the ESP-IDF Project / build (esp32h2, latest) (push) Failing after 0s
Thomas the tank engine - Build the ESP-IDF Project / build (esp32h2, release-v5.3) (push) Failing after 0s
Thomas the tank engine - Build the ESP-IDF Project / build (esp32h2, release-v5.4) (push) Failing after 0s
Thomas the tank engine - Build the ESP-IDF Project / build (esp32s3, latest) (push) Failing after 0s
Thomas the tank engine - Build the ESP-IDF Project / build (esp32s3, release-v5.3) (push) Failing after 0s
Thomas the tank engine - Build the ESP-IDF Project / build (esp32s3, release-v5.4) (push) Failing after 0s
fix github action error
Signed-off-by: Peter Siegmund <developer@mars3142.org>
2025-01-22 09:07:42 +01:00

33 lines
719 B
YAML

name: Thomas the tank engine - Build the ESP-IDF Project
on:
push:
pull_request:
merge_group:
schedule:
- cron: "0 5 * * 3"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
strategy:
matrix:
idf_ver: [release-v5.3, release-v5.4, latest]
idf_target: [esp32, esp32s3, esp32c3, esp32c5, esp32h2]
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
submodules: "recursive"
- name: ESP-IDF build
uses: espressif/esp-idf-ci-action@v1
with:
esp_idf_version: ${{ matrix.idf_ver }}
target: ${{ matrix.idf_target }}