Use custom sdkconfig for header limit beta #1
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Header Limit Beta | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - fix/http-header-limit-sdkconfig | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| - name: Install PlatformIO | |
| run: pip install platformio | |
| - name: Build Firmware | |
| run: pio run -e project_aura | |
| - name: Verify Header Limit | |
| run: | | |
| grep -n "CONFIG_HTTPD_MAX_REQ_HDR_LEN" .pio/build/project_aura/config/sdkconfig.h | |
| grep -q "CONFIG_HTTPD_MAX_REQ_HDR_LEN 8192" .pio/build/project_aura/config/sdkconfig.h | |
| - name: Upload OTA Artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: project_aura-ota-firmware | |
| path: .pio/build/project_aura/firmware.bin | |
| if-no-files-found: error |