Skip to content

Use custom sdkconfig for header limit beta #1

Use custom sdkconfig for header limit beta

Use custom sdkconfig for header limit beta #1

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