From b2abcf76385ff56a8108858e607dd32e403d8571 Mon Sep 17 00:00:00 2001 From: nihalzp <81457724+nihalzp@users.noreply.github.com> Date: Fri, 20 Jun 2025 15:27:54 +0800 Subject: [PATCH 1/2] Use clang version 19 for release --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e58f33bd..1a89e156 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 From 1411f142b69b339dafb8bdcf050196049751eb4f Mon Sep 17 00:00:00 2001 From: nihalzp <81457724+nihalzp@users.noreply.github.com> Date: Fri, 20 Jun 2025 16:02:19 +0800 Subject: [PATCH 2/2] Match ld version with compiler --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1a89e156..3aa8f679 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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.