fix missing increment of the instance count on every call to startup() #3749
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: cxx11 | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
name: macos | |
runs-on: macos-latest | |
steps: | |
- name: GoogleTest | |
run: brew install googletest | |
- uses: actions/checkout@v3 | |
- name: configure | |
run: | | |
mkdir _build && cd _build | |
cmake ../ -DCMAKE_COMPILE_WARNING_AS_ERROR=ON -DENABLE_STDCXX_SYNC=ON -DENABLE_ENCRYPTION=OFF -DENABLE_UNITTESTS=ON -DENABLE_BONDING=ON -DUSE_CXX_STD=14 | |
- name: build | |
run: cd _build && cmake --build ./ | |
- name: test | |
run: cd _build && ctest --extra-verbose |