Skip to content

Commit 3ff53f7

Browse files
committed
remove clang10 to clang12 from CI
1 parent b0141cc commit 3ff53f7

File tree

1 file changed

+0
-87
lines changed

1 file changed

+0
-87
lines changed

.github/workflows/cmake.yml

Lines changed: 0 additions & 87 deletions
Original file line numberDiff line numberDiff line change
@@ -103,60 +103,6 @@ jobs:
103103
cxx: "g++-14",
104104
cxxver: 20,
105105
}
106-
- {
107-
name: "Linux clang-10 C++17",
108-
os: ubuntu-22.04,
109-
buildtype: Release,
110-
cxx: "clang++-10",
111-
cxx_flags: -stdlib=libc++,
112-
exe_linker_flags: -lc++,
113-
cxxver: 17,
114-
}
115-
- {
116-
name: "Linux clang-10 C++20",
117-
os: ubuntu-22.04,
118-
buildtype: Release,
119-
cxx: "clang++-10",
120-
cxx_flags: -stdlib=libc++,
121-
exe_linker_flags: -lc++,
122-
cxxver: 20,
123-
}
124-
- {
125-
name: "Linux clang-11 C++17",
126-
os: ubuntu-22.04,
127-
buildtype: Release,
128-
cxx: "clang++-11",
129-
cxx_flags: -stdlib=libc++,
130-
exe_linker_flags: -lc++,
131-
cxxver: 17,
132-
}
133-
- {
134-
name: "Linux clang-11 C++20",
135-
os: ubuntu-22.04,
136-
buildtype: Release,
137-
cxx: "clang++-11",
138-
cxx_flags: -stdlib=libc++,
139-
exe_linker_flags: -lc++,
140-
cxxver: 20,
141-
}
142-
- {
143-
name: "Linux clang-12 C++17",
144-
os: ubuntu-22.04,
145-
buildtype: Release,
146-
cxx: "clang++-12",
147-
cxx_flags: -stdlib=libc++,
148-
exe_linker_flags: -lc++,
149-
cxxver: 17,
150-
}
151-
- {
152-
name: "Linux clang-12 C++20",
153-
os: ubuntu-22.04,
154-
buildtype: Release,
155-
cxx: "clang++-12",
156-
cxx_flags: -stdlib=libc++,
157-
exe_linker_flags: -lc++,
158-
cxxver: 20,
159-
}
160106
- {
161107
name: "Linux clang-13 C++17",
162108
os: ubuntu-22.04,
@@ -385,39 +331,6 @@ jobs:
385331
mingw-w64-${{ matrix.config.mingw-arch }}-toolchain
386332
update: true
387333

388-
- name: Install Clang 10
389-
id: install_clang_10
390-
if: startsWith(matrix.config.os, 'ubuntu') && ( matrix.config.cxx == 'clang++-10' )
391-
shell: bash
392-
working-directory: ${{ env.HOME }}
393-
run: |
394-
wget https://apt.llvm.org/llvm.sh
395-
chmod +x llvm.sh
396-
sudo ./llvm.sh 10
397-
sudo apt-get install libc++-10-dev libc++abi-10-dev
398-
399-
- name: Install Clang 11
400-
id: install_clang_11
401-
if: startsWith(matrix.config.os, 'ubuntu') && ( matrix.config.cxx == 'clang++-11' )
402-
shell: bash
403-
working-directory: ${{ env.HOME }}
404-
run: |
405-
wget https://apt.llvm.org/llvm.sh
406-
chmod +x llvm.sh
407-
sudo ./llvm.sh 11
408-
sudo apt-get install libc++-11-dev libc++abi-11-dev
409-
410-
- name: Install Clang 12
411-
id: install_clang_12
412-
if: startsWith(matrix.config.os, 'ubuntu') && ( matrix.config.cxx == 'clang++-12' )
413-
shell: bash
414-
working-directory: ${{ env.HOME }}
415-
run: |
416-
wget https://apt.llvm.org/llvm.sh
417-
chmod +x llvm.sh
418-
sudo ./llvm.sh 12
419-
sudo apt-get install libc++-12-dev libc++abi-12-dev libunwind-12-dev
420-
421334
- name: Install Clang 13
422335
id: install_clang_13
423336
if: startsWith(matrix.config.os, 'ubuntu') && ( matrix.config.cxx == 'clang++-13' )

0 commit comments

Comments
 (0)