From e399d53d049eb0a7c7fa83b4e91c621740a7c686 Mon Sep 17 00:00:00 2001 From: Teemu Ollakka Date: Fri, 17 May 2024 15:59:57 +0300 Subject: [PATCH] Try actions gcc-11 on ubuntu 22.04, add gcc 13 and 14 on ubuntu 24.04 The gcc-11 disappeared from ubuntu-2004. Change gcc-11 os to ubuntu 22.04 where it is available. Add gcc-13 and gcc-14 which are now available on ubuntu-2404. --- .github/workflows/build.yml | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0faa767..976853b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -45,11 +45,11 @@ jobs: CC: gcc version: "10" type: Release - - os: ubuntu-20.04 + - os: ubuntu-22.04 CC: gcc version: "11" type: Debug - - os: ubuntu-20.04 + - os: ubuntu-22.04 CC: gcc version: "11" type: Release @@ -61,6 +61,22 @@ jobs: CC: gcc version: "12" type: Release + - os: ubuntu-24.04 + CC: gcc + version: "13" + type: Debug + - os: ubuntu-24.04 + CC: gcc + version: "13" + type: Release + - os: ubuntu-24.04 + CC: gcc + version: "14" + type: Debug + - os: ubuntu-24.04 + CC: gcc + version: "14" + type: Release # Clang - os: ubuntu-20.04 CC: clang