[SSL clean-up] Avoid memory allocations for SSL module, clean-up and … #1633
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: Windows | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
windows: | |
name: Build on Windows | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
buildmode: [Debug] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
vcpkg install curl | |
- name: End vcpkg install | |
run: | | |
vcpkg integrate install | |
- name: Configure CMake | |
run: | | |
cmake -DCMAKE_TOOLCHAIN_FILE="C:/vcpkg/scripts/buildsystems/vcpkg.cmake" -DCMAKE_BUILD_TYPE=${{matrix.buildmode}} -S . -B build | |
- name: Build | |
working-directory: ${{github.workspace}}/build | |
run: cmake --build . --config ${{matrix.buildmode}} --parallel 4 | |
- name: Tests | |
working-directory: ${{github.workspace}}/build | |
run: ctest -j 2 -C ${{matrix.buildmode}} --output-on-failure |