Skip to content

Commit b1e5776

Browse files
authored
Updated Github workflows configuration (#154)
* Added script to install g++-7 for CI * Added script to install g++-7 and clang-8 for CI
1 parent be95b53 commit b1e5776

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/skyr-url-ci.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -307,6 +307,33 @@ jobs:
307307
COMMAND chmod +x ${cmake_dir}/cmake
308308
)
309309
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+
310337
- name: Install Clang 10
311338
id: install_clang_10
312339
if: startsWith(matrix.config.os, 'ubuntu') && ( matrix.config.cxx == 'clang++-10' )

0 commit comments

Comments
 (0)