From 087c6043d9ffbc8b29429d71ea47680613e6c35a Mon Sep 17 00:00:00 2001 From: Eric Froemling Date: Wed, 9 Jun 2021 20:11:05 -0500 Subject: [PATCH] more work on win bin ci --- tools/batools/pcommand.py | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/tools/batools/pcommand.py b/tools/batools/pcommand.py index d75179d3..73f97b31 100644 --- a/tools/batools/pcommand.py +++ b/tools/batools/pcommand.py @@ -826,13 +826,16 @@ def gen_flat_data_code() -> None: def win_ci_binary_build() -> None: """Simple windows binary build for ci.""" - import subprocess - subprocess.run( - [ - 'tools/pcommand', 'efrocache_get', - 'build/prefab/lib/windows/Debug_Win32/' - 'BallisticaCoreGenericInternal.lib' - ], - check=True, - ) + from efrotools.efrocache import get_target + get_target('build/prefab/lib/windows/Debug_Win32/' + 'BallisticaCoreGenericInternal.lib') + # import subprocess + # subprocess.run( + # [ + # 'python', 'tools/pcommand', 'efrocache_get', + # 'build/prefab/lib/windows/Debug_Win32/' + # 'BallisticaCoreGenericInternal.lib' + # ], + # check=True, + # ) print('so far so good', flush=True)