build(deps): bump pypa/gh-action-pypi-publish from 1.12.4 to 1.13.0 in /.github/workflows #232
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: Build C++ libs | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - '**' | |
| jobs: | |
| build-libs: | |
| name: Build C++ libs | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - os: ubuntu-24.04 | |
| build-type: Debug | |
| system-deps: "sudo apt -y install libboost-dev libboost-math-dev" | |
| - os: ubuntu-24.04 | |
| build-type: Release | |
| system-deps: "sudo apt -y install libboost-dev libboost-math-dev" | |
| - os: macos-14 | |
| build-type: Debug | |
| system-deps: "brew install boost" | |
| - os: macos-14 | |
| build-type: Release | |
| system-deps: "brew install boost" | |
| steps: | |
| - name: checkout repo & submodules | |
| uses: actions/checkout@v4 | |
| - name: install system packages | |
| run: | | |
| ${{ matrix.system-deps }} | |
| - name: make build directory | |
| run: | | |
| mkdir ${{ matrix.build-type }} | |
| - name: cmake configure | |
| run: | | |
| cmake .. -DCMAKE_BUILD_TYPE=${{ matrix.build-type }} | |
| working-directory: ${{ matrix.build-type }} | |
| - name: cmake build | |
| run: | | |
| cmake --build . --parallel | |
| working-directory: ${{ matrix.build-type }} |