Skip to content

Commit 917262c

Browse files
author
Justin Boswell
authored
Fixed paths to libcrypto in CD (#188)
1 parent fee732e commit 917262c

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

codebuild/cd/manylinux-x64-build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ phases:
77
pre_build:
88
commands:
99
- export CC=gcc
10+
- export AWS_LIBCRYPTO_INSTALL=/opt/openssl
1011
- cd aws-crt-python
1112
- /opt/python/cp37-cp37m/bin/python ./continuous-delivery/update-version.py
1213
build:

codebuild/cd/manylinux-x86-build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ phases:
77
pre_build:
88
commands:
99
- export CC=gcc
10+
- export AWS_LIBCRYPTO_INSTALL=/opt/openssl
1011
- cd aws-crt-python
1112
- /opt/python/cp37-cp37m/bin/python ./continuous-delivery/update-version.py
1213
build:

continuous-delivery/build-wheels-manylinux2014-arm.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ set -e
55

66
/usr/local/bin/python3.8 ./continuous-delivery/update-version.py
77

8+
export AWS_LIBCRYPTO_INSTALL=/opt/openssl
9+
810
/usr/local/bin/python3.5m setup.py sdist bdist_wheel
911
auditwheel repair --plat manylinux2014_aarch64 dist/awscrt-*cp35*.whl
1012

@@ -21,4 +23,3 @@ rm dist/*.whl
2123
cp -r wheelhouse/* dist/
2224

2325
#now you just need to run twine (that's in a different script)
24-

0 commit comments

Comments
 (0)