From 424eda1fb176171493c12a2df31965f6150399b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Igor=20Chor=C4=85=C5=BCewicz?= Date: Fri, 4 Jun 2021 14:04:40 +0200 Subject: [PATCH] Use VS 2016 as a temp workaround for: https://github.com/actions/virtual-environments/issues/3475 --- .github/workflows/gha.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/gha.yml b/.github/workflows/gha.yml index 40270cdf5b..644b9817df 100644 --- a/.github/workflows/gha.yml +++ b/.github/workflows/gha.yml @@ -90,16 +90,16 @@ jobs: windows: name: Windows - runs-on: windows-latest + runs-on: windows-2016 env: platform: x64 VCPKG_DEFAULT_TRIPLET: x64-windows - GENERATOR: "Visual Studio 16 2019" + GENERATOR: "Visual Studio 15 2017" ARCH: "x64" PMDK_VERSION: "1.9" CMAKE_TOOLCHAIN_FILE: "C:\\vcpkg\\scripts\\buildsystems\\vcpkg.cmake" CMAKE_INSTALL_PREFIX: "C:\\install\\libpmemobj-cpp" - MSBUILD: "C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Enterprise\\MSBuild\\Current\\Bin" + MSBUILD: "C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\Enterprise\\MSBuild\\Current\\Bin" strategy: matrix: BUILD_TYPE: [Debug, Release]