Skip to content

Commit

Permalink
debug CI
Browse files Browse the repository at this point in the history
  • Loading branch information
fpelliccioni committed May 28, 2024
1 parent 450d449 commit be27fcf
Showing 1 changed file with 7 additions and 10 deletions.
17 changes: 7 additions & 10 deletions install.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,13 @@ def check_exists(path):


def accomodate_capi():
check_exists(f'./full_deploy/host/c-api')
check_exists(f'./full_deploy/host/c-api/{capi_version}')
check_exists(f'./full_deploy/host/c-api/{capi_version}/Release')
check_exists(f'./full_deploy/host/c-api/{capi_version}/Release/x86_64')
check_exists(f'./full_deploy/host/c-api/{capi_version}/Release/x86_64/include')


extensions = ['.a', '.so', '.lib', '.dylib', '.dll']

new_directory = './deps/lib/'
Expand All @@ -113,16 +120,6 @@ def accomodate_capi():

shutil.move(f'./full_deploy/host/c-api/{capi_version}/Release/x86_64/include', './deps/include')

#TODO check if f'./full_deploy/host/c-api/{capi_version}' exists: if not, then print an error message and fini
check_exists(f'./full_deploy/host/c-api')
check_exists(f'./full_deploy/host/c-api/{capi_version}')
check_exists(f'./full_deploy/host/c-api/{capi_version}/Release')
check_exists(f'./full_deploy/host/c-api/{capi_version}/Release/x86_64')
check_exists(f'./full_deploy/host/c-api/{capi_version}/Release/x86_64/include')


#TODO then list the files


def run_conan(reference, march_id, debug_build):
exec_conan(['profile', 'detect'])
Expand Down

0 comments on commit be27fcf

Please sign in to comment.