[websockets] Add server name parameter to allow the use of an IP address for the connection URL (DNS resolution done beforehand) when using a TLS link (server name is used for certificate hostname check) #310
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: Unit test in Debug build | |
on: | |
push: | |
branches: [ develop ] | |
pull_request: | |
branches: [ main, develop ] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: make gcc Debug | |
run: make gcc BUILD_TYPE=Debug | |
- name: unit tests gcc Debug | |
run: make tests-gcc BUILD_TYPE=Debug | |
- name: make clang Debug | |
run: make clang BUILD_TYPE=Debug | |
- name: unit tests clang | |
run: make tests-clang BUILD_TYPE=Debug |