Skip to content

Commit bd01f47

Browse files
pheiduckbrammool
authored andcommitted
patch 9.0.0401: CI uses older clang version
Problem: CI uses older clang version. Solution: Switch from clang 14 to 15. (closes #11066)
1 parent e68f134 commit bd01f47

2 files changed

Lines changed: 9 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -98,17 +98,17 @@ jobs:
9898
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-11 100
9999
sudo update-alternatives --set gcc /usr/bin/gcc-11
100100
101-
- name: Install clang-14
101+
- name: Install clang-15
102102
if: matrix.compiler == 'clang'
103103
run: |
104104
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
105105
. /etc/lsb-release
106-
sudo add-apt-repository -y "deb http://apt.llvm.org/${DISTRIB_CODENAME}/ llvm-toolchain-${DISTRIB_CODENAME}-14 main"
107-
sudo apt install -y clang-14 llvm-14
108-
sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-14 100
109-
sudo update-alternatives --set clang /usr/bin/clang-14
110-
sudo update-alternatives --install /usr/bin/llvm-cov llvm-cov /usr/bin/llvm-cov-14 100
111-
sudo update-alternatives --install /usr/bin/asan_symbolize asan_symbolize /usr/bin/asan_symbolize-14 100
106+
sudo add-apt-repository -y "deb http://apt.llvm.org/${DISTRIB_CODENAME}/ llvm-toolchain-${DISTRIB_CODENAME}-15 main"
107+
sudo apt install -y clang-15 llvm-15
108+
sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-15 100
109+
sudo update-alternatives --set clang /usr/bin/clang-15
110+
sudo update-alternatives --install /usr/bin/llvm-cov llvm-cov /usr/bin/llvm-cov-15 100
111+
sudo update-alternatives --install /usr/bin/asan_symbolize asan_symbolize /usr/bin/asan_symbolize-15 100
112112
113113
- name: Set up environment
114114
run: |

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -703,6 +703,8 @@ static char *(features[]) =
703703

704704
static int included_patches[] =
705705
{ /* Add new patch number below this line */
706+
/**/
707+
401,
706708
/**/
707709
400,
708710
/**/

0 commit comments

Comments
 (0)