Skip to content

Commit

Permalink
ci: support test old branches with label
Browse files Browse the repository at this point in the history
  • Loading branch information
hfudev committed Sep 6, 2024
1 parent 72c48b7 commit 464f30e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-build-idf-apps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ jobs:
path: dist/idf_build_apps-*.whl

build-apps-on-idf-env:
if: ${{ github.ref == 'refs/heads/main' }}
if: ${{ github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'test-old-idf-releases') }}
needs: build-python-packages
strategy:
matrix:
idf-branch: [ release-v5.0, release-v5.1, release-v5.2 ]
idf-branch: [ release-v5.0, release-v5.1, release-v5.2, release-v5.3 ]
runs-on: ubuntu-latest
container:
image: espressif/idf:${{ matrix.idf-branch }}
Expand Down

0 comments on commit 464f30e

Please sign in to comment.