build: gcc installation step is now mandatory for all gcc versions

This commit is contained in:
Mateusz Pusz
2025-07-10 09:56:20 +02:00
parent 9226a8cddb
commit 05f0c5f04b
2 changed files with 4 additions and 4 deletions

View File

@@ -89,8 +89,8 @@ jobs:
with:
key: ${{ matrix.config.os }}-${{ matrix.formatting }}-${{ matrix.contracts }}-${{ matrix.config.compiler.type }}-${{ matrix.config.lib }}-${{ matrix.build_type }}-${{ matrix.config.compiler.version }}-${{ matrix.std }}
max-size: 50M
- name: Install gcc-13
if: matrix.config.compiler.type == 'GCC' && matrix.config.compiler.version == '13'
- name: Install gcc-${{ matrix.config.compiler.version }}
if: matrix.config.compiler.type == 'GCC'
shell: bash
run: |
sudo apt install -y g++-${{ matrix.config.compiler.version }}

View File

@@ -96,8 +96,8 @@ jobs:
cmake-${{ matrix.config.os }}-${{ matrix.formatting }}-${{ matrix.contracts }}-
cmake-${{ matrix.config.os }}-${{ matrix.formatting }}-
cmake-${{ matrix.config.os }}-
- name: Install gcc-13
if: matrix.config.compiler.type == 'GCC' && matrix.config.compiler.version == '13'
- name: Install gcc-${{ matrix.config.compiler.version }}
if: matrix.config.compiler.type == 'GCC'
shell: bash
run: |
sudo apt install -y g++-${{ matrix.config.compiler.version }}