Skip to content

[libc] Update clang to v22 in the fullbuild tests #152039

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 4, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions .github/workflows/libc-fullbuild-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,37 +21,37 @@ jobs:
- os: ubuntu-24.04
build_type: Debug
ccache-variant: sccache
c_compiler: clang-20
cpp_compiler: clang++-20
c_compiler: clang-22
cpp_compiler: clang++-22
target: x86_64-unknown-linux-llvm
include_scudo: ON
- os: ubuntu-24.04
build_type: Release
ccache-variant: sccache
c_compiler: clang-20
cpp_compiler: clang++-20
c_compiler: clang-22
cpp_compiler: clang++-22
target: x86_64-unknown-linux-llvm
include_scudo: ON
- os: ubuntu-24.04
build_type: MinSizeRel
ccache-variant: sccache
c_compiler: clang-20
cpp_compiler: clang++-20
c_compiler: clang-22
cpp_compiler: clang++-22
target: x86_64-unknown-linux-llvm
include_scudo: ON
# TODO: remove ccache logic when https://github.com/hendrikmuhs/ccache-action/issues/279 is resolved.
- os: ubuntu-24.04-arm
build_type: Debug
ccache-variant: ccache
c_compiler: clang-20
cpp_compiler: clang++-20
c_compiler: clang-22
cpp_compiler: clang++-22
target: aarch64-unknown-linux-llvm
include_scudo: ON
- os: ubuntu-24.04
build_type: Debug
ccache-variant: ccache
c_compiler: clang-20
cpp_compiler: clang++-20
c_compiler: clang-22
cpp_compiler: clang++-22
target: x86_64-unknown-uefi-llvm
include_scudo: OFF
# TODO: add back gcc build when it is fixed
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
run: |
wget https://apt.llvm.org/llvm.sh
chmod +x llvm.sh
sudo ./llvm.sh 20
sudo ./llvm.sh 22
sudo apt-get update
sudo apt-get install -y libmpfr-dev libgmp-dev libmpc-dev ninja-build linux-libc-dev
sudo ln -sf /usr/include/$(uname -p)-linux-gnu/asm /usr/include/asm
Expand Down
Loading