From 81c332e57492f04ca0112e862811d1555817822e Mon Sep 17 00:00:00 2001 From: Eric Froemling Date: Wed, 9 Jun 2021 20:26:50 -0500 Subject: [PATCH] more work on win bin ci --- tools/batools/pcommand.py | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/tools/batools/pcommand.py b/tools/batools/pcommand.py index 4ac1b3ff..5eb0a6fc 100644 --- a/tools/batools/pcommand.py +++ b/tools/batools/pcommand.py @@ -834,16 +834,18 @@ def win_ci_binary_build() -> None: 'BallisticaCoreGenericInternal.pdb') get_target('ballisticacore-windows/Generic/BallisticaCore.ico') - subprocess.run( - [ - 'C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\' - 'Community\\MSBuild\\Current\\Bin\\MSBuild.exe', - 'ballisticacore-windows\\Generic\\BallisticaCoreGeneric.vcxproj', - '-target:Build', - '-property:Configuration=Debug', - '-property:Platform=Win32', - '-property:VisualStudioVersion=16', - ], - check=True, - ) + if bool(False): + subprocess.run( + [ + 'C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\' + 'Community\\MSBuild\\Current\\Bin\\MSBuild.exe', + 'ballisticacore-windows\\Generic' + '\\BallisticaCoreGeneric.vcxproj', + '-target:Build', + '-property:Configuration=Debug', + '-property:Platform=Win32', + '-property:VisualStudioVersion=16', + ], + check=True, + ) print('so far so good 3', flush=True)