Skip to content

ci: switch GHA workflows for GCC + Clang to Ubuntu 24.04 runner #15

ci: switch GHA workflows for GCC + Clang to Ubuntu 24.04 runner

ci: switch GHA workflows for GCC + Clang to Ubuntu 24.04 runner #15

Workflow file for this run

name: Clang
on: push
jobs:
clang:
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
version: [14, 16, 18]
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 == 18
- name: Run tests
run: |
cd "$GITHUB_WORKSPACE/build"
ctest -V