From 181e5faa8f891eb3dae8ff2d2f42c6cec6d37002 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Rombauts?= Date: Sat, 17 Aug 2024 23:51:14 +0200 Subject: [PATCH] Use explicit versions of Ubuntu images instead of latest To test more versions --- .github/workflows/cmake.yml | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index b07502bb..e4fbd3f0 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -27,8 +27,24 @@ jobs: extra_path: "C:\\ProgramData\\chocolatey\\lib\\mingw\\tools\\install\\mingw64\\bin", } - { - name: "Ubuntu Latest GCC", - os: ubuntu-latest, + name: "Ubuntu 24.04 GCC", + os: ubuntu-24.04, + generator: "Unix Makefiles", + build_type: "Debug", + cc: "gcc", cxx: "g++", + extra_path: "", + } + - { + name: "Ubuntu 22.04 GCC", + os: ubuntu-22.04, + generator: "Unix Makefiles", + build_type: "Debug", + cc: "gcc", cxx: "g++", + extra_path: "", + } + - { + name: "Ubuntu 20.04 GCC", + os: ubuntu-20.04, generator: "Unix Makefiles", build_type: "Debug", cc: "gcc", cxx: "g++",