From aa2dbf55643a7fe6fb64aeefeaf96c288ad6899a Mon Sep 17 00:00:00 2001 From: Serge Lamikhov-Center Date: Wed, 13 Dec 2023 19:42:38 +0200 Subject: [PATCH] Add Windows-2019 --- .github/workflows/c-cpp.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index 2a164c9..6822f87 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -13,13 +13,16 @@ jobs: strategy: matrix: - os: [ubuntu-latest, ubuntu-20.04, windows-latest, macos-11, macos-13] + os: [ubuntu-latest, ubuntu-20.04, windows-latest, windows-2019, macos-11, macos-13] build_type: [Release, Debug] cpp_compiler: [g++, clang++, cl] include: - os: windows-latest cpp_compiler: cl c_compiler: cl + - os: windows-2019 + cpp_compiler: cl + c_compiler: cl - os: ubuntu-latest cpp_compiler: g++ c_compiler: gcc @@ -49,6 +52,10 @@ jobs: cpp_compiler: g++ - os: windows-latest cpp_compiler: clang++ + - os: windows-2019 + cpp_compiler: g++ + - os: windows-2019 + cpp_compiler: clang++ - os: ubuntu-latest cpp_compiler: cl - os: ubuntu-20.04