Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2e75ee8

Browse files
[libc][Github] Downgrade clang version to v21 (#180043)
apt.llvm.org again is not working for the current release as they try and get everything setup for the release/22.x branch. Downgrade for now until installing LLVM 22 works.
1 parent 08cf3e6 commit 2e75ee8

1 file changed

Lines changed: 23 additions & 23 deletions

File tree

.github/workflows/libc-fullbuild-tests.yml

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -20,68 +20,68 @@ jobs:
2020
include:
2121
- os: ubuntu-24.04
2222
build_type: Debug
23-
c_compiler: clang-22
24-
cpp_compiler: clang++-22
23+
c_compiler: clang-21
24+
cpp_compiler: clang++-21
2525
target: x86_64-unknown-linux-llvm
2626
include_scudo: ON
2727
- os: ubuntu-24.04
2828
build_type: Release
29-
c_compiler: clang-22
30-
cpp_compiler: clang++-22
29+
c_compiler: clang-21
30+
cpp_compiler: clang++-21
3131
target: x86_64-unknown-linux-llvm
3232
include_scudo: ON
3333
- os: ubuntu-24.04
3434
build_type: MinSizeRel
35-
c_compiler: clang-22
36-
cpp_compiler: clang++-22
35+
c_compiler: clang-21
36+
cpp_compiler: clang++-21
3737
target: x86_64-unknown-linux-llvm
3838
include_scudo: ON
3939
- os: ubuntu-24.04-arm
4040
build_type: Debug
41-
c_compiler: clang-22
42-
cpp_compiler: clang++-22
41+
c_compiler: clang-21
42+
cpp_compiler: clang++-21
4343
target: aarch64-unknown-linux-llvm
4444
include_scudo: ON
4545
- os: ubuntu-24.04
4646
build_type: Debug
47-
c_compiler: clang-22
48-
cpp_compiler: clang++-22
47+
c_compiler: clang-21
48+
cpp_compiler: clang++-21
4949
target: x86_64-unknown-uefi-llvm
5050
include_scudo: OFF
5151
- os: ubuntu-24.04
5252
build_type: MinSizeRel
53-
c_compiler: clang-22
54-
cpp_compiler: clang++-22
53+
c_compiler: clang-21
54+
cpp_compiler: clang++-21
5555
target: armv6m-none-eabi
5656
include_scudo: OFF
5757
- os: ubuntu-24.04
5858
build_type: MinSizeRel
59-
c_compiler: clang-22
60-
cpp_compiler: clang++-22
59+
c_compiler: clang-21
60+
cpp_compiler: clang++-21
6161
target: armv7m-none-eabi
6262
include_scudo: OFF
6363
- os: ubuntu-24.04
6464
build_type: MinSizeRel
65-
c_compiler: clang-22
66-
cpp_compiler: clang++-22
65+
c_compiler: clang-21
66+
cpp_compiler: clang++-21
6767
target: armv7em-none-eabi
6868
include_scudo: OFF
6969
- os: ubuntu-24.04
7070
build_type: MinSizeRel
71-
c_compiler: clang-22
72-
cpp_compiler: clang++-22
71+
c_compiler: clang-21
72+
cpp_compiler: clang++-21
7373
target: armv8m.main-none-eabi
7474
include_scudo: OFF
7575
- os: ubuntu-24.04
7676
build_type: MinSizeRel
77-
c_compiler: clang-22
78-
cpp_compiler: clang++-22
77+
c_compiler: clang-21
78+
cpp_compiler: clang++-21
7979
target: armv8.1m.main-none-eabi
8080
include_scudo: OFF
8181
- os: ubuntu-24.04
8282
build_type: MinSizeRel
83-
c_compiler: clang-22
84-
cpp_compiler: clang++-22
83+
c_compiler: clang-21
84+
cpp_compiler: clang++-21
8585
target: riscv32-unknown-elf
8686
include_scudo: OFF
8787
# TODO: add back gcc build when it is fixed
@@ -111,7 +111,7 @@ jobs:
111111
run: |
112112
wget https://apt.llvm.org/llvm.sh
113113
chmod +x llvm.sh
114-
sudo ./llvm.sh 22
114+
sudo ./llvm.sh 21
115115
sudo apt-get update
116116
sudo apt-get install -y libmpfr-dev libgmp-dev libmpc-dev ninja-build linux-libc-dev
117117
sudo ln -sf /usr/include/$(uname -p)-linux-gnu/asm /usr/include/asm

0 commit comments

Comments
 (0)