From 8746040310b81422b864b29f475fa9afa680a11a Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Sat, 31 May 2025 18:29:18 -0700 Subject: [PATCH] Visual Studio Projects: Force build to update to the latest windows-build - windows-build now supports the latest Visual Studio 2017 - Temporarily Disable Appveyor logic saving build results until that's ready --- Visual Studio Projects/Pre-Build-Event.cmd | 2 +- appveyor.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Visual Studio Projects/Pre-Build-Event.cmd b/Visual Studio Projects/Pre-Build-Event.cmd index efdf292f..ebd908f0 100644 --- a/Visual Studio Projects/Pre-Build-Event.cmd +++ b/Visual Studio Projects/Pre-Build-Event.cmd @@ -38,7 +38,7 @@ set _ARG= rem Everything implicitly requires BUILD to also be set to have rem any meaning, it always gets set. set _X_BUILD=BUILD -set _X_REQUIRED_WINDOWS_BUILD=20250426 +set _X_REQUIRED_WINDOWS_BUILD=20250531 call :FindVCVersion _VC_VER _MSVC_VER _MSVC_TOOLSET_VER _MSVC_TOOLSET_DIR echo _VC_VER=%_VC_VER% echo _MSVC_VER=%_MSVC_VER% diff --git a/appveyor.yml b/appveyor.yml index 4cf738d9..af263fdd 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -74,7 +74,7 @@ on_success: - git config --global user.email "mark@infocomm.com" - git config --global user.name "Mark Pizzolato" - git config --global core.autocrlf false -# Linux & macOS use the shell to address this, Windows uses cmd. Poweshell on Windows doesn't like git output to stderr +# Linux & macOS use the shell to address this, Windows uses cmd. Powershell on Windows doesn't like git output to stderr - sh: | if test -d ../Development-Binaries then @@ -115,7 +115,7 @@ on_success: # repository if the current build for this platform is one week or more # from the last saved build for this platform in the repository if (((Get-Date -UFormat %s) -gt $recent_saved_commit_time + $oneweek) -and - ("$env:APPVEYOR_PULL_REQUEST_NUMBER" -eq "")) { + ("$env:APPVEYOR_PULL_REQUEST_NUMBER" -eq "") -and 0) { ("$platform Build") | Out-File -FilePath ../Save-Build-Results } Write-Output "Building repo '$env:APPVEYOR_REPO_NAME' branch: $env:APPVEYOR_REPO_BRANCH"