From 5b55d81e2cda71e7280a566a05c71776feab052e Mon Sep 17 00:00:00 2001 From: Stefan Hillmich Date: Mon, 12 Sep 2022 09:31:58 +0200 Subject: [PATCH] Better match available compiler on ubuntu versions --- .github/workflows/cmake.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index fc79461..c17fc9a 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -16,7 +16,10 @@ jobs: strategy: matrix: os: [ ubuntu-18.04, ubuntu-20.04, ubuntu-22.04 ] - compiler: [ g++-7, g++-9, g++-10, clang++ ] + compiler: [ g++-9, g++-10, clang++ ] + include: + - os: ubuntu-18.04 + compiler: g++-7 name: Build and Test on Ubuntu runs-on: ${{matrix.os}} steps: