Skip to content

Commit

Permalink
Revert "CI: use hyphen instead of underscore in device suffix"
Browse files Browse the repository at this point in the history
This would break OTA in current WAS version. We shouldn't do this until
we release a new WAS version.

This reverts commit 816eb71.
stintel committed Sep 21, 2023

Unverified

This user has not yet uploaded their public signing key.
1 parent 2679c36 commit 16f1c74
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-willow.yml
Original file line number Diff line number Diff line change
@@ -17,8 +17,8 @@ jobs:
strategy:
matrix:
device:
- ESP32-S3-BOX
- ESP32-S3-BOX-LITE
- ESP32_S3_BOX
- ESP32_S3_BOX_LITE
runs-on: ubuntu-22.04
container:
image: ${{ inputs.container-image }}
@@ -63,7 +63,7 @@ jobs:
run: ( . "$IDF_PATH/export.sh"; ./utils.sh setup )
shell: bash
- name: append device type to sdkconfig
run: echo "CONFIG_${{ matrix.device }}_BOARD=y" | sed 's/-/_/g' >> sdkconfig
run: echo "CONFIG_${{ matrix.device }}_BOARD=y" >> sdkconfig
- name: ./utils.sh build
run: ( . "$IDF_PATH/export.sh"; ./utils.sh build )
shell: bash

0 comments on commit 16f1c74

Please sign in to comment.