Skip to content

Commit 7e1e799

Browse files
committed
CI: Downgrade clang to 15
Newest clang errors on rapidjson (which is a rapidjson problem), but this is the rapidjson from Ubuntu repos, and they didn't fix it there. I don't want to deal with this for now.
1 parent 05b0e09 commit 7e1e799

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
strategy:
103103
fail-fast: false
104104
matrix:
105-
clang-ver: [11, 20]
105+
clang-ver: [11, 15]
106106
configuration: [Release, Debug]
107107
env:
108108
CC: clang-${{ matrix.clang-ver }}
@@ -115,10 +115,6 @@ jobs:
115115

116116
- name: Setup
117117
run: |
118-
if [ ${{ matrix.clang-ver }} -eq 20 ]; then
119-
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
120-
sudo add-apt-repository 'deb https://apt.llvm.org/jammy/ llvm-toolchain-jammy-${{ matrix.clang-ver }} main'
121-
fi
122118
sudo apt-get update
123119
sudo apt-get install -y clang-${{ matrix.clang-ver }} g++-multilib libgl-dev ninja-build rapidjson-dev
124120

0 commit comments

Comments
 (0)