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 @@ -307,6 +307,33 @@ jobs:
307
307
COMMAND chmod +x ${cmake_dir}/cmake
308
308
)
309
309
310
+ - name : Install GCC 7
311
+ id : install_gcc_7
312
+ if : startsWith(matrix.config.os, 'ubuntu') && ( matrix.config.cxx == 'g++-7' )
313
+ shell : bash
314
+ working-directory : ${{ env.HOME }}
315
+ run : |
316
+ sudo apt-get update
317
+ sudo apt-get -y install g++-7
318
+
319
+ - name : Install GCC 8
320
+ id : install_gcc_8
321
+ if : startsWith(matrix.config.os, 'ubuntu') && ( matrix.config.cxx == 'g++-8' )
322
+ shell : bash
323
+ working-directory : ${{ env.HOME }}
324
+ run : |
325
+ sudo apt-get update
326
+ sudo apt-get -y install g++-8
327
+
328
+ - name : Install Clang 8
329
+ id : install_clang_8
330
+ if : startsWith(matrix.config.os, 'ubuntu') && ( matrix.config.cxx == 'clang++-8' )
331
+ shell : bash
332
+ working-directory : ${{ env.HOME }}
333
+ run : |
334
+ sudo apt-get update
335
+ sudo apt-get -y install clang-8
336
+
310
337
- name : Install Clang 10
311
338
id : install_clang_10
312
339
if : startsWith(matrix.config.os, 'ubuntu') && ( matrix.config.cxx == 'clang++-10' )
You can’t perform that action at this time.
0 commit comments