Skip to content

documentation: add third-party license notices #13

documentation: add third-party license notices

documentation: add third-party license notices #13

Workflow file for this run

name: Clang
on: push
jobs:
clang:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
version: [12, 13, 14]
steps:
# Checks-out the repository under $GITHUB_WORKSPACE.
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Install Debian packages
run: |
sudo apt-get update
sudo apt-get install -y cmake clang-${{ matrix.version }} pkg-config
- name: Build with Clang ${{ matrix.version }}
run: |
export CXX=clang++-${{ matrix.version }}
export CC=clang-${{ matrix.version }}
cd $GITHUB_WORKSPACE
mkdir build
cd build
cmake ../
make -j2
- name: Build statically linked with Clang ${{ matrix.version }}
run: |
export CXX=clang++-${{ matrix.version }}
export CC=clang-${{ matrix.version }}
cd $GITHUB_WORKSPACE
mkdir build-static
cd build-static
cmake -DENABLE_LTO=ON -DENABLE_STATIC_LINKING=ON ../
make -j2
# Only run static build on latest version in the matrix.
if: matrix.version == 14
- name: Run tests
run: |
cd "$GITHUB_WORKSPACE/build"
ctest -V