thread_migrate strategy changes from random to round-robin (#163) #81
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: macOS | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
Debug: | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Dependencies | |
shell: bash | |
run: | | |
brew install cmake openssl gflags googletest gsasl | |
- name: Configure CMake | |
run: cmake -B ${{github.workspace}}/build -D BUILD_TESTING=1 -D ENABLE_SASL=1 -D CMAKE_BUILD_TYPE=Debug -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl@3 | |
- name: Build | |
run: cmake --build ${{github.workspace}}/build -j | |
- name: Test | |
working-directory: ${{github.workspace}}/build | |
run: ctest --timeout 3600 -V | |