From 00f0f4103f1d09302d5af5e786583a4f9d0bbb8f Mon Sep 17 00:00:00 2001 From: Paul Tsouchlos Date: Mon, 16 Sep 2024 20:55:21 -0600 Subject: [PATCH] ci: only use gcc7,8 on ubuntu 20.04 --- .github/workflows/ubuntu.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index e86426d..439d64a 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -8,17 +8,19 @@ env: jobs: build-gcc: runs-on: ${{matrix.os}} - name: ${{ matrix.os}} ${{ matrix.version }} C++${{ matrix.cpp }} + name: ${{ matrix.os}} gcc${{ matrix.version }} C++${{ matrix.cpp }} strategy: fail-fast: false max-parallel: 4 matrix: os: [ubuntu-20.04, ubuntu-22.04] cpp: [17] - version: [7, 8, 9, 10, 11] + version: [9, 10, 11] include: - os: ubuntu-22.04 version: 12 + - os: ubuntu-20.04 + version: [7, 8] env: CPP_STANDARD: ${{ matrix.cpp }} steps: