documentation: add third-party license notices #13
This file contains 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: 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 |