Fix issues with Github CI #23
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: CMake build CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| cmake: | |
| name: Build with CMake | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Install dependencies with awalsh128/cache-apt-pkgs-action | |
| uses: awalsh128/cache-apt-pkgs-action@latest | |
| with: | |
| packages: libboost-all-dev libspdlog-dev libfmt-dev | |
| # Need a more modern version of spdlog than provided by 20.04 | |
| add-repository: ppa:savoury1/backports | |
| version: 1.0 | |
| - name: Checkout repository | |
| uses: actions/checkout@v5 | |
| with: | |
| submodules: recursive | |
| - name: Build Project | |
| uses: threeal/cmake-action@v2.1.0 |