From 9d0fcf6bfa7458d352c3d11ad7a237d05ed08e0a Mon Sep 17 00:00:00 2001 From: Edward Firmo <94725493+edwardtfn@users.noreply.github.com> Date: Fri, 27 Dec 2024 02:30:52 +0100 Subject: [PATCH] Test Media Player with Arduino --- .github/workflows/validate_esphome_beta.yml | 10 +++++----- ...player.yaml => esphome_ard_media_player.yaml} | 2 +- .test/esphome_idf53_media_player.yaml | 16 ---------------- 3 files changed, 6 insertions(+), 22 deletions(-) rename .test/{esphome_idf_media_player.yaml => esphome_ard_media_player.yaml} (95%) delete mode 100644 .test/esphome_idf53_media_player.yaml diff --git a/.github/workflows/validate_esphome_beta.yml b/.github/workflows/validate_esphome_beta.yml index e25e096..43f2859 100644 --- a/.github/workflows/validate_esphome_beta.yml +++ b/.github/workflows/validate_esphome_beta.yml @@ -229,16 +229,16 @@ jobs: yaml-file: ".test/esphome_idf53_ble_proxy.yaml" version: beta - build_idf_media_player: - name: Media Player (IDF) - needs: build_idf_basic + build_ard_media_player: + name: Media Player (Ard) + needs: build_ard_basic runs-on: ubuntu-latest steps: - uses: actions/checkout@main - - name: Build Media Player (IDF) + - name: Build Media Player (Ard) uses: esphome/build-action@main with: - yaml-file: ".test/esphome_idf_media_player.yaml" + yaml-file: ".test/esphome_ard_media_player.yaml" version: beta build_idf53_media_player: diff --git a/.test/esphome_idf_media_player.yaml b/.test/esphome_ard_media_player.yaml similarity index 95% rename from .test/esphome_idf_media_player.yaml rename to .test/esphome_ard_media_player.yaml index 7f94d6e..9c1dc40 100644 --- a/.test/esphome_idf_media_player.yaml +++ b/.test/esphome_ard_media_player.yaml @@ -6,7 +6,7 @@ packages: esp32: framework: - type: esp-idf + type: arduino wifi: ssid: !secret wifi_ssid diff --git a/.test/esphome_idf53_media_player.yaml b/.test/esphome_idf53_media_player.yaml deleted file mode 100644 index fdc7e14..0000000 --- a/.test/esphome_idf53_media_player.yaml +++ /dev/null @@ -1,16 +0,0 @@ ---- -packages: - core_package: !include ../ESPHome/TX-Ultimate-Easy-ESPHome_core.yaml - standard_package: !include ../ESPHome/TX-Ultimate-Easy-ESPHome_standard.yaml - addon_media_player: !include ../ESPHome/TX-Ultimate-Easy-ESPHome_addon_media_player.yaml - -esp32: - framework: - type: esp-idf - version: 5.3.1 - platform_version: 6.9.0 - -wifi: - ssid: !secret wifi_ssid - password: !secret wifi_password -...