From c2f6b75d8bd43de074a6d90f12a1ea7c071b61e5 Mon Sep 17 00:00:00 2001 From: Beatriz Navidad Vilches Date: Tue, 18 Jun 2024 08:13:02 +0000 Subject: [PATCH] Fix MSVC compiler toolset version --- .github/workflows/presubmit.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/presubmit.yml b/.github/workflows/presubmit.yml index 20ad3d62..95d5ed45 100644 --- a/.github/workflows/presubmit.yml +++ b/.github/workflows/presubmit.yml @@ -494,7 +494,7 @@ jobs: } $VER = switch ('${{matrix.VER}}') { ` 'v142' {'14.2'} ` - 'v143' {'14.3'} } + 'v143' {'14.4'} } Import-Module "${env:VS_ROOT}\Common7\Tools\Microsoft.VisualStudio.DevShell.dll" Enter-VsDevShell -VsInstallPath ${env:VS_ROOT} -SkipAutomaticLocation -DevCmdArguments "-host_arch=x64 -arch=${{matrix.BIN}} -vcvars_ver=$VER" & cmake ` @@ -531,7 +531,7 @@ jobs: run: | $VER = switch ('${{matrix.VER}}') { ` 'v142' {'14.2'} ` - 'v143' {'14.3'} } + 'v143' {'14.4'} } Import-Module "${env:VS_ROOT}\Common7\Tools\Microsoft.VisualStudio.DevShell.dll" Enter-VsDevShell -VsInstallPath ${env:VS_ROOT} -SkipAutomaticLocation -DevCmdArguments "-host_arch=x64 -arch=${{matrix.BIN}} -vcvars_ver=$VER" foreach ($Config in 'Release','Debug') { ` @@ -589,7 +589,7 @@ jobs: run: | $VER = switch ('${{matrix.VER}}') { ` 'v142' {'14.2'} ` - 'v143' {'14.3'} } + 'v143' {'14.4'} } Import-Module "${env:VS_ROOT}\Common7\Tools\Microsoft.VisualStudio.DevShell.dll" Enter-VsDevShell -VsInstallPath ${env:VS_ROOT} -SkipAutomaticLocation -DevCmdArguments "-host_arch=x64 -arch=${{matrix.BIN}} -vcvars_ver=${VER}" & cmake `