Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: add release 5.2 to ci #651

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,10 @@ jobs:
matrix:
esp_idf_version:
- latest
- release-v5.2
- release-v5.1
- release-v5.0
- release-v4.4
- release-v4.3
target:
- esp32
- esp32s2
Expand Down Expand Up @@ -175,22 +175,22 @@ jobs:
examples="${{ needs.prepare.outputs._ci_build_esp32s2 }}"
fi

# ESP32-C3: 4.3, 4.4, 5.0, 5.1
# ESP32-C3: >= 4.3
if [ "${{ matrix.target }}" = "esp32c3" ]; then
if [ "${{ matrix.esp_idf_version }}" != "release-v4.2" ]; then
examples="${{ needs.prepare.outputs._ci_build_esp32c3 }}"
fi
fi

# ESP32-S3: 4.4, 5.0, 5.1
# ESP32-S3: >= 4.4
if [ "${{ matrix.target }}" = "esp32s3" ]; then
if [ "${{ matrix.esp_idf_version }}" != "release-v4.2" \
-a "${{ matrix.esp_idf_version }}" != "release-v4.3"]; then
examples="${{ needs.prepare.outputs._ci_build_esp32s3 }}"
fi
fi

# ESP32-C2: 5.0, 5.1
# ESP32-C2: >= 5.0
if [ "${{ matrix.target }}" = "esp32c2" ]; then
if [ "${{ matrix.esp_idf_version }}" != "release-v4.2" \
-a "${{ matrix.esp_idf_version }}" != "release-v4.3" \
Expand All @@ -199,7 +199,7 @@ jobs:
fi
fi

# ESP32-C6: 5.1
# ESP32-C6: >= 5.1
if [ "${{ matrix.target }}" = "esp32c6" ]; then
if [ "${{ matrix.esp_idf_version }}" != "release-v4.2" \
-a "${{ matrix.esp_idf_version }}" != "release-v4.3" \
Expand All @@ -209,7 +209,7 @@ jobs:
fi
fi

# ESP32-H2: 5.1
# ESP32-H2: >= 5.1
if [ "${{ matrix.target }}" = "esp32h2" ]; then
if [ "${{ matrix.esp_idf_version }}" != "release-v4.2" \
-a "${{ matrix.esp_idf_version }}" != "release-v4.3" \
Expand Down
6 changes: 3 additions & 3 deletions devtools/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Jinja2==3.1.4
pydantic==2.4.0
PyYAML==6.0
Jinja2
pydantic
PyYAML
Loading