Skip to content

Commit

Permalink
Require ESPHome 2023.10.0b1 and remove one external_component (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
jesserockz authored Oct 12, 2023
1 parent ee1591d commit 11ad905
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 37 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ concurrency:

env:
FIRMWARES: esp-web-tools esphome-web voice-assistant bluetooth-proxy media-player
VOICE_ASSISTANT_VERSION: 2023.10.0b1

jobs:
prepare:
Expand All @@ -33,7 +34,11 @@ jobs:
for device in $firmware/*.yaml; do
device=${device##*/}
device=${device%.yaml}
matrix="$matrix{\"firmware\":\"$firmware\",\"device\":\"$device\"},"
version="latest"
if [[ $firmware == "voice-assistant" ]]; then
version=$VOICE_ASSISTANT_VERSION
fi
matrix="$matrix{\"firmware\":\"$firmware\",\"device\":\"$device\", \"version\":\"$version\"},"
done
done
matrix=${matrix%?}
Expand Down
7 changes: 1 addition & 6 deletions voice-assistant/esp32-s3-box-lite.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ esphome:
project:
name: esphome.voice-assistant
version: "1.0"
min_version: 2023.9.0
min_version: 2023.10.0b1
on_boot:
- priority: -100
then:
Expand Down Expand Up @@ -246,11 +246,6 @@ external_components:
- source: github://pr#5230
components: esp_adf
refresh: 0s
- source: github://pr#5229
components:
- voice_assistant
- api
refresh: 0s

psram:
mode: octal
Expand Down
7 changes: 1 addition & 6 deletions voice-assistant/esp32-s3-box.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ esphome:
project:
name: esphome.voice-assistant
version: "1.0"
min_version: 2023.9.0
min_version: 2023.10.0b1
on_boot:
- priority: -100
then:
Expand Down Expand Up @@ -181,11 +181,6 @@ external_components:
- source: github://pr#5230
components: esp_adf
refresh: 0s
- source: github://pr#5229
components:
- voice_assistant
- api
refresh: 0s

psram:
mode: octal
Expand Down
7 changes: 1 addition & 6 deletions voice-assistant/m5stack-atom-echo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ esphome:
project:
name: m5stack.atom-echo-voice-assistant
version: "1.0"
min_version: 2023.9.0
min_version: 2023.10.0b1
on_boot:
- priority: -100
then:
Expand Down Expand Up @@ -187,10 +187,5 @@ external_components:
components:
- esp_adf
refresh: 0s
- source: github://pr#5229
components:
- voice_assistant
- api
refresh: 0s

esp_adf:
7 changes: 1 addition & 6 deletions voice-assistant/quinled-dig2go.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ esphome:
project:
name: quinled.dig2go-voice-assistant
version: "1.0"
min_version: 2023.9.0
min_version: 2023.10.0b1
on_boot:
- priority: -100
then:
Expand Down Expand Up @@ -42,11 +42,6 @@ external_components:
components:
- esp_adf
refresh: 0s
- source: github://pr#5229
components:
- voice_assistant
- api
refresh: 0s

i2s_audio:
i2s_lrclk_pin: GPIO4
Expand Down
7 changes: 1 addition & 6 deletions voice-assistant/raspiaudio-muse-luxe.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ esphome:
project:
name: raspiaudio.muse-luxe-voice-assistant
version: "1.0"
min_version: 2023.9.0
min_version: 2023.10.0b1
on_boot:
- priority: -100
then:
Expand Down Expand Up @@ -49,11 +49,6 @@ external_components:
components:
- esp_adf
refresh: 0s
- source: github://pr#5229
components:
- voice_assistant
- api
refresh: 0s

es8388:

Expand Down
7 changes: 1 addition & 6 deletions voice-assistant/raspiaudio-muse-proto.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ esphome:
project:
name: raspiaudio.muse-proto-voice-assistant
version: "1.0"
min_version: 2023.9.0
min_version: 2023.10.0b1
on_boot:
- priority: -100
then:
Expand Down Expand Up @@ -42,11 +42,6 @@ external_components:
components:
- esp_adf
refresh: 0s
- source: github://pr#5229
components:
- voice_assistant
- api
refresh: 0s

i2s_audio:
- i2s_lrclk_pin: GPIO25
Expand Down

0 comments on commit 11ad905

Please sign in to comment.