Add tests with hw_vibration
This commit is contained in:
136
.github/workflows/validate_esphome.yml
vendored
136
.github/workflows/validate_esphome.yml
vendored
@@ -52,12 +52,12 @@ jobs:
|
|||||||
version: latest
|
version: latest
|
||||||
|
|
||||||
build_idf53_core:
|
build_idf53_core:
|
||||||
name: Core (IDFv5.3)
|
name: Core (IDF v5.3)
|
||||||
needs: code_scan
|
needs: code_scan
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@main
|
- uses: actions/checkout@main
|
||||||
- name: Build Core (IDFv5.3)
|
- name: Build Core (IDF v5.3)
|
||||||
uses: esphome/build-action@main
|
uses: esphome/build-action@main
|
||||||
with:
|
with:
|
||||||
yaml-file: ".test/esphome_idf53_core.yaml"
|
yaml-file: ".test/esphome_idf53_core.yaml"
|
||||||
@@ -76,7 +76,7 @@ jobs:
|
|||||||
version: latest
|
version: latest
|
||||||
|
|
||||||
build_idf_basic:
|
build_idf_basic:
|
||||||
name: Core (IDF)
|
name: Basic (IDF)
|
||||||
needs: build_idf_core
|
needs: build_idf_core
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
@@ -88,17 +88,125 @@ jobs:
|
|||||||
version: latest
|
version: latest
|
||||||
|
|
||||||
build_idf53_basic:
|
build_idf53_basic:
|
||||||
name: Basic (IDFv5.3)
|
name: Basic (IDF v5.3)
|
||||||
needs: build_idf53_core
|
needs: build_idf53_core
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@main
|
- uses: actions/checkout@main
|
||||||
- name: Build Basic (IDFv5.3)
|
- name: Build Basic (IDF v5.3)
|
||||||
uses: esphome/build-action@main
|
uses: esphome/build-action@main
|
||||||
with:
|
with:
|
||||||
yaml-file: ".test/esphome_idf53_basic.yaml"
|
yaml-file: ".test/esphome_idf53_basic.yaml"
|
||||||
version: latest
|
version: latest
|
||||||
|
|
||||||
|
build_ard_hw_relays:
|
||||||
|
name: HW Relays (Arduino)
|
||||||
|
needs: build_ard_core
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@main
|
||||||
|
- name: Build HW Relays (Arduino)
|
||||||
|
uses: esphome/build-action@main
|
||||||
|
with:
|
||||||
|
yaml-file: ".test/esphome_ard_hw_relays.yaml"
|
||||||
|
version: latest
|
||||||
|
|
||||||
|
build_idf_hw_relays:
|
||||||
|
name: HW Relays (IDF)
|
||||||
|
needs: build_idf_core
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@main
|
||||||
|
- name: Build HW Relays (IDF)
|
||||||
|
uses: esphome/build-action@main
|
||||||
|
with:
|
||||||
|
yaml-file: ".test/esphome_idf_hw_relays.yaml"
|
||||||
|
version: latest
|
||||||
|
|
||||||
|
build_idf53_hw_relays:
|
||||||
|
name: HW Relays (IDF v5.3)
|
||||||
|
needs: build_idf53_core
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@main
|
||||||
|
- name: Build HW Relays (IDF v5.3)
|
||||||
|
uses: esphome/build-action@main
|
||||||
|
with:
|
||||||
|
yaml-file: ".test/esphome_idf53_hw_relays.yaml"
|
||||||
|
version: latest
|
||||||
|
|
||||||
|
build_ard_hw_speaker:
|
||||||
|
name: HW Speaker (Arduino)
|
||||||
|
needs: build_ard_core
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@main
|
||||||
|
- name: Build HW Speaker (Arduino)
|
||||||
|
uses: esphome/build-action@main
|
||||||
|
with:
|
||||||
|
yaml-file: ".test/esphome_ard_hw_speaker.yaml"
|
||||||
|
version: latest
|
||||||
|
|
||||||
|
build_idf_hw_speaker:
|
||||||
|
name: HW Speaker (IDF)
|
||||||
|
needs: build_idf_core
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@main
|
||||||
|
- name: Build HW Speaker (IDF)
|
||||||
|
uses: esphome/build-action@main
|
||||||
|
with:
|
||||||
|
yaml-file: ".test/esphome_idf_hw_speaker.yaml"
|
||||||
|
version: latest
|
||||||
|
|
||||||
|
build_idf53_hw_speaker:
|
||||||
|
name: HW Speaker (IDF v5.3)
|
||||||
|
needs: build_idf53_core
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@main
|
||||||
|
- name: Build HW Speaker (IDF v5.3)
|
||||||
|
uses: esphome/build-action@main
|
||||||
|
with:
|
||||||
|
yaml-file: ".test/esphome_idf53_hw_speaker.yaml"
|
||||||
|
version: latest
|
||||||
|
|
||||||
|
build_ard_hw_vibration:
|
||||||
|
name: HW Vibration (Arduino)
|
||||||
|
needs: build_ard_core
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@main
|
||||||
|
- name: Build HW Vibration (Arduino)
|
||||||
|
uses: esphome/build-action@main
|
||||||
|
with:
|
||||||
|
yaml-file: ".test/esphome_ard_hw_vibration.yaml"
|
||||||
|
version: latest
|
||||||
|
|
||||||
|
build_idf_hw_vibration:
|
||||||
|
name: HW Vibration (IDF)
|
||||||
|
needs: build_idf_core
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@main
|
||||||
|
- name: Build HW Vibration (IDF)
|
||||||
|
uses: esphome/build-action@main
|
||||||
|
with:
|
||||||
|
yaml-file: ".test/esphome_idf_hw_vibration.yaml"
|
||||||
|
version: latest
|
||||||
|
|
||||||
|
build_idf53_hw_vibration:
|
||||||
|
name: HW Vibration (IDF v5.3)
|
||||||
|
needs: build_idf53_core
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@main
|
||||||
|
- name: Build HW Vibration (IDF v5.3)
|
||||||
|
uses: esphome/build-action@main
|
||||||
|
with:
|
||||||
|
yaml-file: ".test/esphome_idf53_hw_vibration.yaml"
|
||||||
|
version: latest
|
||||||
|
|
||||||
build_ard_ble_proxy:
|
build_ard_ble_proxy:
|
||||||
name: Bluetooth Proxy (Ard)
|
name: Bluetooth Proxy (Ard)
|
||||||
needs: build_ard_basic
|
needs: build_ard_basic
|
||||||
@@ -124,36 +232,36 @@ jobs:
|
|||||||
version: latest
|
version: latest
|
||||||
|
|
||||||
build_idf53_ble_proxy:
|
build_idf53_ble_proxy:
|
||||||
name: Bluetooth Proxy (IDFv5.3)
|
name: Bluetooth Proxy (IDF v5.3)
|
||||||
needs: build_idf53_basic
|
needs: build_idf53_basic
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@main
|
- uses: actions/checkout@main
|
||||||
- name: Build BLE Proxy (IDFv5.3)
|
- name: Build BLE Proxy (IDF v5.3)
|
||||||
uses: esphome/build-action@main
|
uses: esphome/build-action@main
|
||||||
with:
|
with:
|
||||||
yaml-file: ".test/esphome_idf53_ble_proxy.yaml"
|
yaml-file: ".test/esphome_idf53_ble_proxy.yaml"
|
||||||
version: latest
|
version: latest
|
||||||
|
|
||||||
build_idf_media_player:
|
build_ard_media_player:
|
||||||
name: Media Player (IDF)
|
name: Media Player (Ard)
|
||||||
needs: build_idf_basic
|
needs: build_ard_basic
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@main
|
- uses: actions/checkout@main
|
||||||
- name: Build Media Player (IDF)
|
- name: Build Media Player (Ard)
|
||||||
uses: esphome/build-action@main
|
uses: esphome/build-action@main
|
||||||
with:
|
with:
|
||||||
yaml-file: ".test/esphome_idf_media_player.yaml"
|
yaml-file: ".test/esphome_ard_media_player.yaml"
|
||||||
version: latest
|
version: latest
|
||||||
|
|
||||||
build_idf53_media_player:
|
build_idf53_media_player:
|
||||||
name: Media Player (IDFv5.3)
|
name: Media Player (IDF v5.3)
|
||||||
needs: build_idf53_basic
|
needs: build_idf53_basic
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@main
|
- uses: actions/checkout@main
|
||||||
- name: Build Media Player (IDFv5.3)
|
- name: Build Media Player (IDF v5.3)
|
||||||
uses: esphome/build-action@main
|
uses: esphome/build-action@main
|
||||||
with:
|
with:
|
||||||
yaml-file: ".test/esphome_idf53_media_player.yaml"
|
yaml-file: ".test/esphome_idf53_media_player.yaml"
|
||||||
|
|||||||
36
.github/workflows/validate_esphome_beta.yml
vendored
36
.github/workflows/validate_esphome_beta.yml
vendored
@@ -197,6 +197,42 @@ jobs:
|
|||||||
yaml-file: ".test/esphome_idf53_hw_speaker.yaml"
|
yaml-file: ".test/esphome_idf53_hw_speaker.yaml"
|
||||||
version: beta
|
version: beta
|
||||||
|
|
||||||
|
build_ard_hw_vibration:
|
||||||
|
name: HW Vibration (Arduino)
|
||||||
|
needs: build_ard_core
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@main
|
||||||
|
- name: Build HW Vibration (Arduino)
|
||||||
|
uses: esphome/build-action@main
|
||||||
|
with:
|
||||||
|
yaml-file: ".test/esphome_ard_hw_vibration.yaml"
|
||||||
|
version: beta
|
||||||
|
|
||||||
|
build_idf_hw_vibration:
|
||||||
|
name: HW Vibration (IDF)
|
||||||
|
needs: build_idf_core
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@main
|
||||||
|
- name: Build HW Vibration (IDF)
|
||||||
|
uses: esphome/build-action@main
|
||||||
|
with:
|
||||||
|
yaml-file: ".test/esphome_idf_hw_vibration.yaml"
|
||||||
|
version: beta
|
||||||
|
|
||||||
|
build_idf53_hw_vibration:
|
||||||
|
name: HW Vibration (IDF v5.3)
|
||||||
|
needs: build_idf53_core
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@main
|
||||||
|
- name: Build HW Vibration (IDF v5.3)
|
||||||
|
uses: esphome/build-action@main
|
||||||
|
with:
|
||||||
|
yaml-file: ".test/esphome_idf53_hw_vibration.yaml"
|
||||||
|
version: beta
|
||||||
|
|
||||||
build_ard_ble_proxy:
|
build_ard_ble_proxy:
|
||||||
name: Bluetooth Proxy (Ard)
|
name: Bluetooth Proxy (Ard)
|
||||||
needs: build_ard_basic
|
needs: build_ard_basic
|
||||||
|
|||||||
13
.test/esphome_ard_hw_vibration.yaml
Normal file
13
.test/esphome_ard_hw_vibration.yaml
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
packages:
|
||||||
|
core_package: !include ../ESPHome/TX-Ultimate-Easy-ESPHome_core.yaml
|
||||||
|
standard_hw_vibration_package: !include ../ESPHome/TX-Ultimate-Easy-ESPHome_standard_hw_vibration.yaml
|
||||||
|
|
||||||
|
esp32:
|
||||||
|
framework:
|
||||||
|
type: arduino
|
||||||
|
|
||||||
|
wifi:
|
||||||
|
ssid: !secret wifi_ssid
|
||||||
|
password: !secret wifi_password
|
||||||
|
...
|
||||||
15
.test/esphome_idf53_hw_vibration.yaml
Normal file
15
.test/esphome_idf53_hw_vibration.yaml
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
---
|
||||||
|
packages:
|
||||||
|
core_package: !include ../ESPHome/TX-Ultimate-Easy-ESPHome_core.yaml
|
||||||
|
standard_hw_vibration_package: !include ../ESPHome/TX-Ultimate-Easy-ESPHome_standard_hw_vibration.yaml
|
||||||
|
|
||||||
|
esp32:
|
||||||
|
framework:
|
||||||
|
type: esp-idf
|
||||||
|
version: 5.3.1
|
||||||
|
platform_version: 6.9.0
|
||||||
|
|
||||||
|
wifi:
|
||||||
|
ssid: !secret wifi_ssid
|
||||||
|
password: !secret wifi_password
|
||||||
|
...
|
||||||
13
.test/esphome_idf_hw_vibration.yaml
Normal file
13
.test/esphome_idf_hw_vibration.yaml
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
packages:
|
||||||
|
core_package: !include ../ESPHome/TX-Ultimate-Easy-ESPHome_core.yaml
|
||||||
|
standard_hw_vibration_package: !include ../ESPHome/TX-Ultimate-Easy-ESPHome_standard_hw_vibration.yaml
|
||||||
|
|
||||||
|
esp32:
|
||||||
|
framework:
|
||||||
|
type: esp-idf
|
||||||
|
|
||||||
|
wifi:
|
||||||
|
ssid: !secret wifi_ssid
|
||||||
|
password: !secret wifi_password
|
||||||
|
...
|
||||||
Reference in New Issue
Block a user