Default Win32 transport to WinHTTP and harden request lifetimes #1274
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: C/C++ CI on Windows (vs2022) | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - main | |
| - dev | |
| pull_request: | |
| branches: | |
| - master | |
| - main | |
| - dev | |
| # Least-privilege GITHUB_TOKEN scope: this workflow only checks out source | |
| # and runs the Visual Studio 2022 build. Explicit block satisfies CodeQL | |
| # rule actions/missing-workflow-permissions if Actions analysis is enabled. | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: windows-2022 | |
| name: Build | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4.4.0 | |
| - name: Build | |
| env: | |
| SKIP_ARM_BUILD: 1 | |
| SKIP_ARM64_BUILD: 1 | |
| SKIP_NET40_BUILD: 1 | |
| PlatformToolset: v143 | |
| VSTOOLS_VERSION: vs2022 | |
| shell: cmd | |
| run: build-all-windows.bat |