esp-idf as default framework
This commit is contained in:
13
.github/workflows/validate_esphome.yml
vendored
13
.github/workflows/validate_esphome.yml
vendored
@@ -30,8 +30,8 @@ jobs:
|
||||
fetch-depth: '0'
|
||||
- name: Validate nspanel_esphome.yaml
|
||||
run: yamllint -c "./.rules/yamllint.yml" nspanel_esphome.yaml
|
||||
- name: Validate nspanel_esphome_core.yaml
|
||||
run: yamllint -c "./.rules/yamllint.yml" advanced/esphome/nspanel_esphome_core.yaml
|
||||
- name: Validate nspanel_esphome_basic.yaml
|
||||
run: yamllint -c "./.rules/yamllint.yml" advanced/esphome/nspanel_esphome_basic.yaml
|
||||
- name: Validate nspanel_esphome_addon_upload_tft.yaml
|
||||
run: yamllint -c "./.rules/yamllint.yml" advanced/esphome/nspanel_esphome_addon_upload_tft.yaml
|
||||
- name: Validate nspanel_esphome_advanced.yaml
|
||||
@@ -130,8 +130,8 @@ jobs:
|
||||
with:
|
||||
yaml_file: "./.test/esphome_advanced_climate_heat.yaml"
|
||||
|
||||
build_climate_cool_advanced_esp_idf:
|
||||
name: esp-idf & Bluetooth proxy
|
||||
build_climate_cool_advanced_arduino:
|
||||
name: Arduino
|
||||
runs-on: "ubuntu-latest"
|
||||
needs:
|
||||
- build_climate_cool
|
||||
@@ -140,10 +140,10 @@ jobs:
|
||||
- uses: actions/checkout@v4.1.0
|
||||
with:
|
||||
fetch-depth: '0'
|
||||
- name: Build core+advanced+climate_cool+esp_idf
|
||||
- name: Build core+advanced+climate_cool+arduino
|
||||
uses: esphome/build-action@v1.8.0
|
||||
with:
|
||||
yaml_file: "./.test/esphome_advanced_climate_cool_esp_idf.yaml"
|
||||
yaml_file: "./.test/esphome_advanced_climate_cool_arduino.yaml"
|
||||
|
||||
build_climate_dual_esp_idf5:
|
||||
name: esp-idf v5 & Climate Dual & Bluetooth proxy
|
||||
@@ -165,7 +165,6 @@ jobs:
|
||||
runs-on: "ubuntu-latest"
|
||||
needs:
|
||||
- build_climate_heat_advanced
|
||||
- build_climate_cool_advanced_esp_idf
|
||||
steps:
|
||||
- uses: actions/checkout@v4.1.0
|
||||
with:
|
||||
|
||||
13
.github/workflows/validate_esphome_beta.yml
vendored
13
.github/workflows/validate_esphome_beta.yml
vendored
@@ -20,8 +20,8 @@ jobs:
|
||||
fetch-depth: '0'
|
||||
- name: Validate nspanel_esphome.yaml
|
||||
run: yamllint -c "./.rules/yamllint.yml" nspanel_esphome.yaml
|
||||
- name: Validate nspanel_esphome_core.yaml
|
||||
run: yamllint -c "./.rules/yamllint.yml" advanced/esphome/nspanel_esphome_core.yaml
|
||||
- name: Validate nspanel_esphome_basic.yaml
|
||||
run: yamllint -c "./.rules/yamllint.yml" advanced/esphome/nspanel_esphome_basic.yaml
|
||||
- name: Validate nspanel_esphome_addon_upload_tft.yaml
|
||||
run: yamllint -c "./.rules/yamllint.yml" advanced/esphome/nspanel_esphome_addon_upload_tft.yaml
|
||||
- name: Validate nspanel_esphome_advanced.yaml
|
||||
@@ -126,8 +126,8 @@ jobs:
|
||||
yaml_file: "./.test/esphome_advanced_climate_heat.yaml"
|
||||
version: beta
|
||||
|
||||
build_climate_cool_advanced_esp_idf:
|
||||
name: esp-idf & Bluetooth proxy
|
||||
build_climate_cool_advanced_arduino:
|
||||
name: Arduino
|
||||
runs-on: "ubuntu-latest"
|
||||
needs:
|
||||
- build_climate_cool
|
||||
@@ -136,10 +136,10 @@ jobs:
|
||||
- uses: actions/checkout@v4.1.0
|
||||
with:
|
||||
fetch-depth: '0'
|
||||
- name: Build core+advanced+climate_cool+esp_idf
|
||||
- name: Build core+advanced+climate_cool+arduino
|
||||
uses: esphome/build-action@v1.8.0
|
||||
with:
|
||||
yaml_file: "./.test/esphome_advanced_climate_cool_esp_idf.yaml"
|
||||
yaml_file: "./.test/esphome_advanced_climate_cool_arduino.yaml"
|
||||
version: beta
|
||||
|
||||
build_climate_dual_esp_idf5:
|
||||
@@ -163,7 +163,6 @@ jobs:
|
||||
runs-on: "ubuntu-latest"
|
||||
needs:
|
||||
- build_climate_heat_advanced
|
||||
- build_climate_cool_advanced_esp_idf
|
||||
steps:
|
||||
- uses: actions/checkout@v4.1.0
|
||||
with:
|
||||
|
||||
6
.github/workflows/validate_yamllint.yml
vendored
6
.github/workflows/validate_yamllint.yml
vendored
@@ -35,7 +35,11 @@ jobs:
|
||||
run: |
|
||||
IFS=',' read -ra FILES <<< "${{ steps.changed-files.outputs.all_changed_files }}"
|
||||
for file in "${FILES[@]}"; do
|
||||
if [[ "$file" =~ ^nspanel_esphome.*\.yaml$ ]] || [[ "$file" =~ ^advanced/esphome/nspanel_esphome.*\.yaml$ ]] || [[ "$file" == "nspanel_blueprint.yaml" ]]; then
|
||||
if [[ "$file" =~ ^nspanel_esphome.*\.yaml$ ]]
|
||||
|| [[ "$file" =~ ^esphome/nspanel_esphome.*\.yaml$ ]]
|
||||
|| [[ "$file" =~ ^prebuilt/nspanel_esphome.*\.yaml$ ]]
|
||||
|| [[ "$file" == "nspanel_blueprint.yaml" ]];
|
||||
then
|
||||
echo "Skipping $file"
|
||||
continue
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user