more work on win bin ci

This commit is contained in:
Eric Froemling 2021-06-09 20:11:05 -05:00
parent aa94037b91
commit 087c6043d9
No known key found for this signature in database
GPG Key ID: 89C93F0F8D6D5A98

View File

@ -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)