Remove out-of-line definition of constexpr static data members #2598
Workflow file for this run
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: macOS build | |
| on: [push, pull_request] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.job }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| os: | |
| - 13 | |
| - 14 | |
| runs-on: macos-${{ matrix.os }} | |
| name: 'macos-${{ matrix.os }}' | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Setup | |
| run: | | |
| mkdir _build | |
| cd _build && cmake .. -DBUILD_TESTS=ON -DDOWNLOAD_DOCTEST=ON -DBUILD_BENCHMARK=ON -DBUILD_EXAMPLES=ON -DCMAKE_BUILD_TYPE=Release -DCMAKE_OSX_ARCHITECTURES="arm64;x86_64" | |
| - name: Build | |
| run: cmake --build _build --verbose | |
| - name: Testing sequential | |
| run: cmake --build _build --target xbenchmark --verbose | |
| - name: Testing xsimd | |
| run: ${{github.workspace}}/_build/test/test_xsimd |