Explicit restrict qualifier for queue elements parameter of index map… #37
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: Meson Continuous Integrations | |
| on: | |
| push: | |
| branches: [ master ] | |
| paths: | |
| - '!**' | |
| - '**.h' | |
| - '**.cc' | |
| - 'meson*' | |
| - .github/workflows/ci-meson.yml | |
| pull_request: | |
| branches: [ master ] | |
| paths: | |
| - '!**' | |
| - '**.h' | |
| - '**.cc' | |
| - 'meson*' | |
| - .github/workflows/ci-meson.yml | |
| jobs: | |
| build-and-test: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, ubuntu-24.04-arm] | |
| cpp_compiler: [g++, clang++] | |
| sanitize: [address, undefined, thread] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install Meson and Boost.Test | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install --yes -qq meson libboost-test-dev | |
| - name: Setup | |
| env: | |
| CXX: ${{ matrix.cpp_compiler }} | |
| run: meson setup build -Dwerror=true -Dwarning_level=3 -Db_sanitize=${{ matrix.sanitize }} | |
| - name: Compile | |
| run: meson compile -C build | |
| - name: Test | |
| run: meson test -C build --print-errorlogs |