File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change 31
31
cxx : " g++-10" ,
32
32
cxxver : 20,
33
33
}
34
+ - {
35
+ name : " Linux g++ 11 C++17" ,
36
+ os : ubuntu-20.04,
37
+ cxx : " g++-11" ,
38
+ cxxver : 17,
39
+ }
40
+ - {
41
+ name : " Linux g++ 11 C++20" ,
42
+ os : ubuntu-20.04,
43
+ cxx : " g++-11" ,
44
+ cxxver : 20,
45
+ }
34
46
- {
35
47
name : " Linux clang-10 C++17" ,
36
48
os : ubuntu-20.04,
@@ -207,6 +219,15 @@ jobs:
207
219
sudo add-apt-repository ppa:ubuntu-toolchain-r/ppa
208
220
sudo apt-get install g++-10
209
221
222
+ - name : Install g++ 11
223
+ id : install_gcc_11
224
+ if : startsWith(matrix.config.os, 'ubuntu') && ( matrix.config.cxx == 'g++-11' )
225
+ shell : bash
226
+ working-directory : ${{ env.HOME }}
227
+ run : |
228
+ sudo add-apt-repository ppa:ubuntu-toolchain-r/ppa
229
+ sudo apt-get install g++-11
230
+
210
231
- name : Create Build Environment
211
232
# Some projects don't allow in-source building, so create a separate build directory
212
233
# We'll use this as our working directory for all subsequent commands
You can’t perform that action at this time.
0 commit comments