mirror of
https://github.com/actions/python-versions.git
synced 2025-04-05 06:49:39 +00:00
Some checks failed
CodeQL analysis / CodeQL analysis (push) Has been cancelled
* Included ubuntu-arm64 in Build Python package yml * Updated builder and installer scripts * Updated test scripts * Modified test file * Replaced macos-11 with macos-13 * Update build-python-packages.yml
84 lines
2.9 KiB
Python
84 lines
2.9 KiB
Python
import sysconfig
|
|
import sys
|
|
import platform
|
|
import os
|
|
|
|
# Define variables
|
|
os_type = platform.system()
|
|
version = sys.argv[1]
|
|
nativeVersion = sys.argv[2]
|
|
architecture = sys.argv[3]
|
|
|
|
versions=version.split(".")
|
|
version_major=int(versions[0])
|
|
version_minor=int(versions[1])
|
|
|
|
pkg_installer = os_type == 'Darwin' and ((version_major == 3 and version_minor >= 11) or (architecture == "arm64"))
|
|
|
|
lib_dir_path = sysconfig.get_config_var('LIBDIR')
|
|
ld_library_name = sysconfig.get_config_var('LDLIBRARY')
|
|
|
|
is_shared = sysconfig.get_config_var('Py_ENABLE_SHARED')
|
|
have_libreadline = sysconfig.get_config_var("HAVE_LIBREADLINE")
|
|
|
|
### Define expected variables
|
|
if os_type == 'Linux': expected_ld_library_extension = 'so'
|
|
if os_type == 'Darwin': expected_ld_library_extension = 'dylib'
|
|
|
|
if pkg_installer:
|
|
expected_lib_dir_path = f'/Library/Frameworks/Python.framework/Versions/{version_major}.{version_minor}/lib'
|
|
else:
|
|
expected_lib_dir_path = f'{os.getenv("AGENT_TOOLSDIRECTORY")}/Python/{version}/{architecture}/lib'
|
|
|
|
# Check modules
|
|
### Validate libraries path
|
|
if lib_dir_path != expected_lib_dir_path:
|
|
print('Invalid libraries location: %s; Expected: %s' % (lib_dir_path, expected_lib_dir_path))
|
|
exit(1)
|
|
|
|
### Validate shared libraries
|
|
if is_shared:
|
|
print('%s was built with shared extensions' % ld_library_name)
|
|
|
|
### Validate libpython extension
|
|
ld_library_extension = ld_library_name.split('.')[-1]
|
|
if ld_library_extension != expected_ld_library_extension:
|
|
print('Invalid extension: %s; Expected %s' % (ld_library_extension, expected_ld_library_extension))
|
|
exit(1)
|
|
else:
|
|
print('%s was built without shared extensions' % ld_library_name)
|
|
if not pkg_installer:
|
|
exit(1)
|
|
|
|
### Validate macOS
|
|
if os_type == 'Darwin':
|
|
### Validate openssl links
|
|
if version_major == 3 and version_minor < 7:
|
|
expected_ldflags = '-L/usr/local/opt/openssl@1.1/lib'
|
|
ldflags = sysconfig.get_config_var('LDFLAGS')
|
|
|
|
if not expected_ldflags in ldflags:
|
|
print('Invalid ldflags: %s; Expected: %s' % (ldflags, expected_ldflags))
|
|
exit(1)
|
|
else:
|
|
expected_openssl_includes = '-I/usr/local/opt/openssl@1.1/include'
|
|
expected_openssl_ldflags ='-L/usr/local/opt/openssl@1.1/lib'
|
|
|
|
openssl_includes = sysconfig.get_config_var('OPENSSL_INCLUDES')
|
|
openssl_ldflags = sysconfig.get_config_var('OPENSSL_LDFLAGS')
|
|
|
|
if openssl_includes != expected_openssl_includes:
|
|
print('Invalid openssl_includes: %s; Expected: %s' % (openssl_includes, expected_openssl_includes))
|
|
if not pkg_installer:
|
|
exit(1)
|
|
if openssl_ldflags != expected_openssl_ldflags:
|
|
print('Invalid openssl_ldflags: %s; Expected: %s' % (openssl_ldflags, expected_openssl_ldflags))
|
|
if not pkg_installer:
|
|
exit(1)
|
|
|
|
### Validate libreadline
|
|
if sys.version_info < (3, 12):
|
|
if not have_libreadline:
|
|
print('Missing libreadline')
|
|
exit(1)
|