[build] Travis CI: Enable STDCXX_SYNC on the minGW build. #3205
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: 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 ../ -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 |