mirror of
https://github.com/actions/python-versions.git
synced 2025-04-05 06:49:39 +00:00
add new openssl
This commit is contained in:
@ -39,11 +39,12 @@ class macOSPythonBuilder : NixPythonBuilder {
|
||||
### Solution is to install these libraries from a third-party package manager,
|
||||
### and then add the appropriate paths for the header and library files to configure command.
|
||||
### Link to documentation (https://cpython-devguide.readthedocs.io/setup/#build-dependencies)
|
||||
Write-Host "openssl path: $(brew --prefix openssl)"
|
||||
if ($this.Version -lt "3.7.0") {
|
||||
$env:LDFLAGS = "-L$(brew --prefix openssl)/lib"
|
||||
$env:CFLAGS = "-I$(brew --prefix openssl)/include"
|
||||
} else {
|
||||
$configureString += " --with-openssl=/usr/local/opt/openssl"
|
||||
$configureString += " --with-openssl=/usr/local/opt/openssl@1.1"
|
||||
}
|
||||
|
||||
### Compile with support of loadable sqlite extensions. Unavailable for Python 2.*
|
||||
|
@ -48,6 +48,11 @@ Describe "Tests" {
|
||||
}
|
||||
}
|
||||
|
||||
It "Run pip" {
|
||||
"pip install requests" | Should -ReturnZeroExitCode
|
||||
"pip uninstall requests" | Should -ReturnZeroExitCode
|
||||
}
|
||||
|
||||
if (IsNixPlatform $Platform) {
|
||||
|
||||
It "Check for failed modules in build_output" {
|
||||
|
@ -51,8 +51,8 @@ if os_type == 'Darwin':
|
||||
print('Invalid ldflags: %s; Expected: %s' % (ldflags, expected_ldflags))
|
||||
exit(1)
|
||||
else:
|
||||
expected_openssl_includes = '-I/usr/local/opt/openssl/include'
|
||||
expected_openssl_ldflags ='-L/usr/local/opt/openssl/lib'
|
||||
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')
|
||||
|
@ -139,6 +139,7 @@ standard_library = [
|
||||
'sre_constants',
|
||||
'sre_parse',
|
||||
'ssl',
|
||||
'_ssl',
|
||||
'stat',
|
||||
'string',
|
||||
'stringprep',
|
||||
|
Reference in New Issue
Block a user