core: allow up to 32MB length of line buffer in read_config #2993
Workflow file for this run
This file contains 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: PR - Windows checks | |
on: | |
workflow_dispatch: | |
pull_request: | |
# Limit to just those changes that 'might' affect Windows for automated builds | |
# We can always do a manual build for a branch | |
paths: | |
- '**.h' | |
- '**.c' | |
- '**.windows' | |
- './conf/**' | |
- './cmake/**' | |
types: | |
- opened | |
- reopened | |
- synchronize | |
jobs: | |
pr-windows-build: | |
uses: ./.github/workflows/call-build-windows.yaml | |
with: | |
version: ${{ github.sha }} | |
ref: ${{ github.sha }} | |
environment: pr | |
secrets: | |
token: ${{ secrets.GITHUB_TOKEN }} |