Fix UpstreamPolicies another_strategy() when addr is NULL. #333
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: CMake | |
on: | |
push: | |
branches: [ windows ] | |
pull_request: | |
branches: [ windows ] | |
env: | |
BUILD_TYPE: Release | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install OpenSSL | |
run: choco install -y openssl --version 3.1.1 | |
- name: Configure CMake | |
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} | |
- name: Build | |
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} | |
- name: Configure Tutorial CMake | |
run: cmake -B ${{github.workspace}}/build_tutorial -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -S tutorial | |
- name: Build Tutorial | |
run: cmake --build ${{github.workspace}}/build_tutorial --config ${{env.BUILD_TYPE}} | |