Skip to content

Refactor disconnect method in client.hpp #13

Refactor disconnect method in client.hpp

Refactor disconnect method in client.hpp #13

Workflow file for this run

name: CMake
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
#os: [ubuntu-latest, windows-latest, macos-latest]
os: [ubuntu-latest]
build_type: [Debug, Release]
use_ssl: [ON, OFF]
env:
BUILD_TYPE: ${{ matrix.build_type }}
USE_SSL: ${{ matrix.use_ssl }}
steps:
- name: Install Boost
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
sudo apt-get update
sudo apt-get install libboost-all-dev
elif [ "$RUNNER_OS" == "Windows" ]; then
choco install boost-msvc-14.1
choco info boost-msvc-14.1
elif [ "$RUNNER_OS" == "macOS" ]; then
brew install [email protected]
fi
shell: bash
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DUSE_SSL=${{env.USE_SSL}}
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
- name: Test
working-directory: ${{github.workspace}}/build
run: ctest -C ${{env.BUILD_TYPE}} --rerun-failed --output-on-failure