From 5d3240d4929e200e423cb224ce934035bf0dc695 Mon Sep 17 00:00:00 2001 From: Gliniak Date: Mon, 8 Jul 2024 21:30:46 +0200 Subject: [PATCH] [CI] Changed VS version to see if it will prevent triggering AV --- .github/workflows/Windows_build.yml | 2 +- xb.bat | 2 +- xb.ps1 | 2 +- xenia-build | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/Windows_build.yml b/.github/workflows/Windows_build.yml index 8553b870d..c03d7a129 100644 --- a/.github/workflows/Windows_build.yml +++ b/.github/workflows/Windows_build.yml @@ -56,7 +56,7 @@ jobs: build-windows: name: Build (Windows) # runner.os can't be used here - runs-on: windows-2022 + runs-on: windows-2019 needs: lint env: POWERSHELL_TELEMETRY_OPTOUT: 1 diff --git a/xb.bat b/xb.bat index 7f37d9a40..a8d1853f0 100644 --- a/xb.bat +++ b/xb.bat @@ -8,7 +8,7 @@ REM Environment Validation REM ============================================================================ SET "PYTHON_MINIMUM_VERSION[0]=3" -SET "PYTHON_MINIMUM_VERSION[1]=8" +SET "PYTHON_MINIMUM_VERSION[1]=7" CALL :check_python IF %_RESULT% NEQ 0 ( ECHO. diff --git a/xb.ps1 b/xb.ps1 index 6f6d637e4..5113fcb00 100644 --- a/xb.ps1 +++ b/xb.ps1 @@ -14,7 +14,7 @@ foreach ($pythonExecutable in $pythonExecutables) { } } # Neither found, error and exit -$pythonMinimumVer = 3,8 +$pythonMinimumVer = 3,7 if (!$pythonPath) { Write-FatalError "ERROR: Python $($pythonMinimumVer[0]).$($pythonMinimumVer[1])+ must be installed and on PATH:`nhttps://www.python.org/" } diff --git a/xenia-build b/xenia-build index 03c912933..ed11a138f 100755 --- a/xenia-build +++ b/xenia-build @@ -137,7 +137,7 @@ def main(): print('') # Check python version. - python_minimum_ver=3,8 + python_minimum_ver=3,7 if not sys.version_info[:2] >= (python_minimum_ver[0], python_minimum_ver[1]): print('ERROR: Python ', python_minimum_ver[0], '.', python_minimum_ver[1], '+ must be installed and on PATH', sep='') sys.exit(1)