From 9c9186927eb3c5acb099ead6d86035f99fe3e295 Mon Sep 17 00:00:00 2001 From: jr0me Date: Mon, 14 Oct 2024 19:03:25 -0300 Subject: [PATCH] feat: Update Clang and LLVM versions in coverage_check.yml Github runners were updated to ubuntu 24, there's no support for LLVM 16 Release in this version. --- .github/workflows/coverage_check.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/coverage_check.yml b/.github/workflows/coverage_check.yml index c3d6c666bf3..df7d5838bcf 100644 --- a/.github/workflows/coverage_check.yml +++ b/.github/workflows/coverage_check.yml @@ -18,12 +18,12 @@ jobs: submodules: true fetch-depth: 0 - - name: Install Clang 16 and LLVM 16 + - name: Install Clang 17 and LLVM 17 run: | sudo apt-get update wget https://apt.llvm.org/llvm.sh chmod +x llvm.sh - sudo ./llvm.sh 16 + sudo ./llvm.sh 17 - name: Set up dependencies run: | @@ -38,7 +38,7 @@ jobs: run: echo "/usr/lib/llvm-16/bin" >> $GITHUB_PATH shell: bash - - name: Set up Binary caching + - name: Set up Binary caching uses: ./.github/actions/vcpkg_related/cover_vcpkg_dependencies with: gh_token: ${{ secrets.GITHUB_TOKEN }}