Skip to content

Initialize socket before trying to connect HTTP endpoint #176

Initialize socket before trying to connect HTTP endpoint

Initialize socket before trying to connect HTTP endpoint #176

Workflow file for this run

name: MacOS
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Install CMake
run: brew install cmake
- name: Install dependencies
run: brew install openssl
- name: Check versions
run: |
gcc --version
cmake --version
- name: Build with script
run: ./build.sh --install
- name: Build with CMake
run: |
rm -rf build
mkdir build
cd build
cmake ..
make