[cmake] Link programs against fmt target #8
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: | |
| branches: [ main, unstable, '[0-9]+.[0-9]+.x' ] | |
| pull_request: | |
| branches: [ main, unstable, '[0-9]+.[0-9]+.x' ] | |
| workflow_call: | |
| workflow_dispatch: | |
| env: | |
| CMAKE_C_COMPILER_LAUNCHER: ccache | |
| CMAKE_CXX_COMPILER_LAUNCHER: ccache | |
| CCACHE_COMPILERCHECK: content | |
| CCACHE_BASEDIR: ${{ github.workspace }} | |
| CCACHE_DIR: ${{ github.workspace }}/.ccache | |
| CCACHE_MAXSIZE: 500M | |
| CCACHE_SLOPPINESS: pch_defines,time_macros,include_file_mtime,include_file_ctime | |
| CCACHE_COMPRESS: "1" | |
| CCACHE_COMPRESSLEVEL: "1" | |
| jobs: | |
| build: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - {os: ubuntu-24.04, cxx: g++} | |
| - {os: ubuntu-24.04, cxx: clang++} | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/cache/restore@v4 | |
| with: | |
| path: ${{ env.CCACHE_DIR }} | |
| key: ccache-${{ matrix.os }}-${{ matrix.cxx }}-${{ github.run_id }}-${{ github.run_attempt }} | |
| restore-keys: | | |
| ccache-${{ matrix.os }}-${{ matrix.cxx }}- | |
| - name: Set cxx variables | |
| run: | | |
| if [[ ${{ matrix.os }} == 'macos-15' && ${{ matrix.cxx }} == 'g++' ]]; then | |
| echo "CXX=g++-15" >> $GITHUB_ENV | |
| else | |
| echo "CXX=${{ matrix.cxx }}" >> $GITHUB_ENV | |
| fi | |
| - name: Install ubuntu dependencies | |
| if: ${{ contains(matrix.os, 'ubuntu') }} | |
| run: > | |
| sudo apt-get update && | |
| sudo apt-get install lsb-release wget software-properties-common && | |
| sudo apt-get install | |
| ccache | |
| cmake | |
| ninja-build | |
| clang | |
| g++ | |
| hdf5-tools | |
| libblas-dev | |
| libc++-dev | |
| libc++abi-dev | |
| libomp-dev | |
| libhdf5-dev | |
| libopenblas-dev | |
| libopenmpi-dev | |
| openmpi-bin | |
| openmpi-common | |
| - name: Install homebrew dependencies | |
| if: ${{ contains(matrix.os, 'macos') }} | |
| run: | | |
| brew update | |
| brew install ccache gcc llvm hdf5 open-mpi openblas | |
| echo "PATH=$(brew --prefix llvm)/bin:$(brew --prefix gcc)/bin:$PATH" >> $GITHUB_ENV | |
| echo "SDKROOT=$(xcrun --show-sdk-path)" >> $GITHUB_ENV | |
| echo "LDFLAGS=-L$(brew --prefix llvm)/lib/c++ -L/opt/homebrew/opt/llvm/lib/unwind -lunwind" >> $GITHUB_ENV | |
| - name: Add clang CXXFLAGS | |
| if: ${{ matrix.cxx == 'clang++' }} | |
| run: | | |
| echo "CXXFLAGS=-stdlib=libc++" >> $GITHUB_ENV | |
| - name: Build cppdlr2d | |
| run: | | |
| cmake -S . -B build -G Ninja -DCMAKE_INSTALL_PREFIX=$HOME/install | |
| cmake --build build --verbose | |
| - name: Test cppdlr2d | |
| env: | |
| OPENBLAS_NUM_THREADS: "1" | |
| run: | | |
| cd build | |
| ctest -j2 --output-on-failure | |
| - name: ccache statistics | |
| if: always() | |
| run: ccache -sv | |
| - uses: actions/cache/save@v4 | |
| if: always() | |
| with: | |
| path: ${{ env.CCACHE_DIR }} | |
| key: ccache-${{ matrix.os }}-${{ matrix.cxx }}-${{ github.run_id }}-${{ github.run_attempt }} |