Update ubuntu's source list to use nobel (#425)

This helps to install clang-18 and not clang-15. Latter cannot be used
anymore to build new LLVM due to some missed clang option.
This commit is contained in:
kvpanch
2025-12-03 21:28:48 -05:00
committed by GitHub
parent 45ceab7dc7
commit d0c10e6d5c
+4 -1
View File
@@ -82,7 +82,10 @@ jobs:
- name: Install Dependencies
if: ${{ matrix.host == 'linux' }}
run: |
sudo apt-get update && sudo apt-get install -y cmake ninja-build curl git libssl-dev pkg-config clang lld musl
cat /etc/apt/sources.list
sudo sed -i 's/jammy/noble/g' /etc/apt/sources.list
cat /etc/apt/sources.list
sudo apt-get update && sudo apt-get install -y cmake ninja-build curl git libssl-dev pkg-config clang lld musl xz-utils libc6-dev gcc-multilib
- name: Install Dependencies
if: ${{ matrix.host == 'macos' }}