From 60deef9997e1fe3e1c1fb2a5ed949f02553c4d0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20D=C3=BCrrenberger?= Date: Tue, 18 Jan 2022 19:40:29 +0100 Subject: [PATCH] Add support for VS 2022 to the GitHub Actions workflow --- .github/workflows/ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 12cf787fa..415dbb480 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,8 +11,9 @@ jobs: fail-fast: false matrix: platform: - - { name: Windows VS2017, os: windows-2016 } - - { name: Windows VS2019, os: windows-latest } + - { name: Windows VS2017, os: windows-2016 } + - { name: Windows VS2019, os: windows-2019 } + - { name: Windows VS2022, os: windows-2022 } - { name: Linux GCC, os: ubuntu-latest } - { name: Linux Clang, os: ubuntu-latest, flags: -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ } - { name: MacOS XCode, os: macos-latest } @@ -21,7 +22,7 @@ jobs: - { name: Static, flags: -DBUILD_SHARED_LIBS=FALSE } include: - - platform: { name: Windows VS2019, os: windows-latest } + - platform: { name: Windows VS2022, os: windows-2022 } config: { name: Unity, flags: -DBUILD_SHARED_LIBS=TRUE -DCMAKE_UNITY_BUILD=ON } - platform: { name: MacOS XCode, os: macos-latest } config: { name: Frameworks, flags: -DSFML_BUILD_FRAMEWORKS=TRUE }