Skip to content
Open
Show file tree
Hide file tree
Changes from 2 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
11 changes: 10 additions & 1 deletion .github/workflows/main_matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,11 @@ jobs:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v7
- uses: actions/setup-python@v6
with:
# Nothing in this job runs git after the checkout, so there is no reason to
# leave the token in .git/config while it executes scripts from the branch.
persist-credentials: false
- uses: actions/setup-python@v7
with:
python-version: 3.x
cache: pip
Expand All @@ -73,6 +77,11 @@ jobs:
echo "Name: $GITHUB_REF_NAME Base: $GITHUB_BASE_REF Ref: $GITHUB_REF"
echo "all=$TARGETS" >> $GITHUB_OUTPUT
echo "$TARGETS" >> $GITHUB_STEP_SUMMARY

# Static config check, like the board_level validation above: no toolchain, and
# it covers every ESP32 env, not just the subset this event builds.
- name: Check ESP32 flash geometry
run: python3 bin/check_partition_sizes.py --fetch-board-manifests "$RUNNER_TEMP/esp32-boards"
Comment thread
caveman99 marked this conversation as resolved.
outputs:
all: ${{ steps.jsonStep.outputs.all }}

Expand Down
Loading
Loading