diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e58f33bd..3aa8f679 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -101,7 +101,7 @@ jobs: name: ubuntu-release-gcc - os: ubuntu-latest compiler: clang - version: 16 + version: 19 build_type: Release name: ubuntu-release-clang - os: ubuntu-latest @@ -146,9 +146,10 @@ jobs: echo "CC=gcc-${{ matrix.version }}" >> $GITHUB_ENV echo "CXX=g++-${{ matrix.version }}" >> $GITHUB_ENV else - sudo apt-get install -y clang-${{ matrix.version }} lld + sudo apt-get install -y clang-${{ matrix.version }} lld-${{ matrix.version }} echo "CC=clang-${{ matrix.version }}" >> $GITHUB_ENV echo "CXX=clang++-${{ matrix.version }}" >> $GITHUB_ENV + echo "LD=ld.lld-${{ matrix.version }}" >> $GITHUB_ENV fi # We only perform static builds so the output can be exported as an artifact # for testing on a clean system without installing dependencies.