Skip to content

[libcxx] Bump clang version to v22 #153264

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 3 commits into from
Aug 13, 2025
Merged
Changes from 2 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
34 changes: 17 additions & 17 deletions .github/workflows/libcxx-build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ concurrency:
jobs:
stage1:
if: github.repository_owner == 'llvm'
runs-on: llvm-premerge-libcxx-runners
runs-on: llvm-premerge-libcxx-next-runners
continue-on-error: false
strategy:
fail-fast: false
Expand All @@ -47,8 +47,8 @@ jobs:
'generic-cxx26',
'generic-modules'
]
cc: [ 'clang-21' ]
cxx: [ 'clang++-21' ]
cc: [ 'clang-22' ]
cxx: [ 'clang++-22' ]
include:
- config: 'generic-gcc'
cc: 'gcc-15'
Expand All @@ -73,7 +73,7 @@ jobs:
**/crash_diagnostics/*
stage2:
if: github.repository_owner == 'llvm'
runs-on: llvm-premerge-libcxx-runners
runs-on: llvm-premerge-libcxx-next-runners
needs: [ stage1 ]
continue-on-error: false
strategy:
Expand All @@ -86,18 +86,18 @@ jobs:
'generic-cxx20',
'generic-cxx23'
]
cc: [ 'clang-21' ]
cxx: [ 'clang++-21' ]
cc: [ 'clang-22' ]
cxx: [ 'clang++-22' ]
include:
- config: 'generic-gcc-cxx11'
cc: 'gcc-15'
cxx: 'g++-15'
- config: 'generic-cxx26'
cc: 'clang-21'
cxx: 'clang++-21'
- config: 'generic-cxx26'
cc: 'clang-20'
cxx: 'clang++-20'
- config: 'generic-cxx26'
cc: 'clang-19'
cxx: 'clang++-19'
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: ${{ matrix.config }}
Expand Down Expand Up @@ -148,27 +148,27 @@ jobs:
'generic-static',
'bootstrapping-build'
]
machine: [ 'llvm-premerge-libcxx-runners' ]
machine: [ 'llvm-premerge-libcxx-next-runners' ]
include:
- config: 'generic-cxx26'
machine: llvm-premerge-libcxx-runners
machine: llvm-premerge-libcxx-next-runners
- config: 'generic-asan'
machine: llvm-premerge-libcxx-runners
machine: llvm-premerge-libcxx-next-runners
- config: 'generic-tsan'
machine: llvm-premerge-libcxx-runners
machine: llvm-premerge-libcxx-next-runners
- config: 'generic-ubsan'
machine: llvm-premerge-libcxx-runners
machine: llvm-premerge-libcxx-next-runners
# Use a larger machine for MSAN to avoid timeout and memory allocation issues.
- config: 'generic-msan'
machine: llvm-premerge-libcxx-runners
machine: llvm-premerge-libcxx-next-runners
runs-on: ${{ matrix.machine }}
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: ${{ matrix.config }}
run: libcxx/utils/ci/run-buildbot ${{ matrix.config }}
env:
CC: clang-21
CXX: clang++-21
CC: clang-22
CXX: clang++-22
- uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 # v4.3.0
if: always()
with:
Expand Down
Loading