Skip to content

fixes #1827 Windows a deadlock on nng_close() #1717

fixes #1827 Windows a deadlock on nng_close()

fixes #1827 Windows a deadlock on nng_close() #1717

Workflow file for this run

name: darwin
on: [push, pull_request]
jobs:
build:
name: build
runs-on: [macos-latest]
steps:
- name: Check out code
uses: actions/checkout@v1
- name: Install Mbed TLS
run: brew install mbedtls
- name: Install ninja
run: brew install ninja
- name: Configure
run: mkdir build && cd build && cmake -G Ninja -DNNG_ENABLE_TLS=ON ..
- name: build
run: cd build && ninja
- name: Test
run: cd build && ctest --output-on-failure