File tree Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change 63
63
exe_linker_flags : -lc++,
64
64
cxxver : 20,
65
65
}
66
+ - {
67
+ name : " Linux clang-12 C++17" ,
68
+ os : ubuntu-20.04,
69
+ cxx : " clang++-12" ,
70
+ cxx_flags : -stdlib=libc++,
71
+ exe_linker_flags : -lc++,
72
+ cxxver : 17,
73
+ }
74
+ - {
75
+ name : " Linux clang-12 C++20" ,
76
+ os : ubuntu-20.04,
77
+ cxx : " clang++-12" ,
78
+ cxx_flags : -stdlib=libc++,
79
+ exe_linker_flags : -lc++,
80
+ cxxver : 20,
81
+ }
66
82
- {
67
83
name : " Windows MSVC 2017 (x64) C++17" ,
68
84
os : windows-2016,
@@ -117,6 +133,17 @@ jobs:
117
133
sudo ./llvm.sh 11
118
134
sudo apt-get install libc++-11-dev libc++abi-11-dev
119
135
136
+ - name : Install Clang 12
137
+ id : install_clang_12
138
+ if : startsWith(matrix.config.os, 'ubuntu') && ( matrix.config.cxx == 'clang++-12' )
139
+ shell : bash
140
+ working-directory : ${{ env.HOME }}
141
+ run : |
142
+ wget https://apt.llvm.org/llvm.sh
143
+ chmod +x llvm.sh
144
+ sudo ./llvm.sh 12
145
+ sudo apt-get install libc++-12-dev libc++abi-12-dev
146
+
120
147
- name : Install g++ 10
121
148
id : install_gcc_10
122
149
if : startsWith(matrix.config.os, 'ubuntu') && ( matrix.config.cxx == 'g++-10' )
You can’t perform that action at this time.
0 commit comments