From 96790b1d2335f3ff8b941b3598f3f1028f5d09f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Fri, 28 May 2021 00:00:01 +0200 Subject: [PATCH] Always install the used compiler in Github Actions This avoids the CI breaking again when the base images remove an older compiler again. --- .github/workflows/linux-simple-builds.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/linux-simple-builds.yml b/.github/workflows/linux-simple-builds.yml index a9abcdfc..d7d4bb07 100644 --- a/.github/workflows/linux-simple-builds.yml +++ b/.github/workflows/linux-simple-builds.yml @@ -29,12 +29,18 @@ jobs: other_pkgs: g++-7 - cxx: g++-8 other_pkgs: g++-8 + - cxx: g++-9 + other_pkgs: g++-9 + - cxx: g++-10 + other_pkgs: g++-10 - cxx: clang++-6.0 other_pkgs: clang-6.0 - cxx: clang++-7 other_pkgs: clang-7 - cxx: clang++-8 other_pkgs: clang-8 + - cxx: clang++-9 + other_pkgs: clang-9 - cxx: clang++-10 other_pkgs: clang-10 # Clang 6 + C++17