We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 705138c commit 968afcfCopy full SHA for 968afcf
.github/workflows/cmake.yml
@@ -514,6 +514,17 @@ jobs:
514
sudo ./llvm.sh 20
515
sudo apt-get install libc++-20-dev libc++abi-20-dev libunwind-20-dev
516
517
+ - name: Install Clang 21
518
+ id: install_clang_21
519
+ if: startsWith(matrix.config.os, 'ubuntu') && ( matrix.config.cxx == 'clang++-21' )
520
+ shell: bash
521
+ working-directory: ${{ env.HOME }}
522
+ run: |
523
+ wget https://apt.llvm.org/llvm.sh
524
+ chmod +x llvm.sh
525
+ sudo ./llvm.sh 21
526
+ sudo apt-get install libc++-21-dev libc++abi-21-dev libunwind-21-dev
527
+
528
- name: Install g++ 10
529
id: install_gcc_10
530
if: startsWith(matrix.config.os, 'ubuntu') && ( matrix.config.cxx == 'g++-10' )
0 commit comments