Added interception of _os_nospin_lock_lock to fix large atomic storag… #46
This file contains hidden or 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: Build | |
| on: | |
| push: | |
| workflow_dispatch: | |
| env: | |
| BUILD_CONFIG: Debug | |
| BUILD_DIR: build | |
| jobs: | |
| test: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - name: linux | |
| os: ubuntu-latest | |
| generator: "Unix Makefiles" | |
| - name: macOS | |
| os: macos-latest | |
| generator: "Xcode" | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: "Build and test" | |
| shell: bash | |
| env: | |
| GENERATOR: ${{ matrix.generator }} | |
| run: | | |
| ctest --build-and-test . ./build_$OSTYPE --build-generator "${{ matrix.generator }}" --test-command ctest -C ${{ env.BUILD_CONFIG }} --verbose |