File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change @@ -216,6 +216,24 @@ jobs:
216
216
exe_linker_flags : -lc++,
217
217
cxxver : 20,
218
218
}
219
+ - {
220
+ name : " Linux clang-16 C++17" ,
221
+ os : ubuntu-22.04,
222
+ buildtype : Release,
223
+ cxx : " clang++-16" ,
224
+ cxx_flags : -stdlib=libc++,
225
+ exe_linker_flags : -lc++,
226
+ cxxver : 17,
227
+ }
228
+ - {
229
+ name : " Linux clang-16 C++20" ,
230
+ os : ubuntu-22.04,
231
+ buildtype : Release,
232
+ cxx : " clang++-16" ,
233
+ cxx_flags : -stdlib=libc++,
234
+ exe_linker_flags : -lc++,
235
+ cxxver : 20,
236
+ }
219
237
- {
220
238
name : " Windows MSVC 2017 (x64) C++17" ,
221
239
os : windows-2019,
@@ -336,6 +354,17 @@ jobs:
336
354
sudo ./llvm.sh 15
337
355
sudo apt-get install libc++-15-dev libc++abi-15-dev libunwind-15-dev
338
356
357
+ - name : Install Clang 16
358
+ id : install_clang_16
359
+ if : startsWith(matrix.config.os, 'ubuntu') && ( matrix.config.cxx == 'clang++-16' )
360
+ shell : bash
361
+ working-directory : ${{ env.HOME }}
362
+ run : |
363
+ wget https://apt.llvm.org/llvm.sh
364
+ chmod +x llvm.sh
365
+ sudo ./llvm.sh 16
366
+ sudo apt-get install libc++-16-dev libc++abi-16-dev libunwind-16-dev
367
+
339
368
- name : Install g++ 10
340
369
id : install_gcc_10
341
370
if : startsWith(matrix.config.os, 'ubuntu') && ( matrix.config.cxx == 'g++-10' )
You can’t perform that action at this time.
0 commit comments