Skip to content

Commit

Permalink
Fixed paths to libcrypto in CD (#188)
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Boswell authored Oct 12, 2020
1 parent fee732e commit 917262c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions codebuild/cd/manylinux-x64-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ phases:
pre_build:
commands:
- export CC=gcc
- export AWS_LIBCRYPTO_INSTALL=/opt/openssl
- cd aws-crt-python
- /opt/python/cp37-cp37m/bin/python ./continuous-delivery/update-version.py
build:
Expand Down
1 change: 1 addition & 0 deletions codebuild/cd/manylinux-x86-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ phases:
pre_build:
commands:
- export CC=gcc
- export AWS_LIBCRYPTO_INSTALL=/opt/openssl
- cd aws-crt-python
- /opt/python/cp37-cp37m/bin/python ./continuous-delivery/update-version.py
build:
Expand Down
3 changes: 2 additions & 1 deletion continuous-delivery/build-wheels-manylinux2014-arm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ set -e

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

export AWS_LIBCRYPTO_INSTALL=/opt/openssl

/usr/local/bin/python3.5m setup.py sdist bdist_wheel
auditwheel repair --plat manylinux2014_aarch64 dist/awscrt-*cp35*.whl

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

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

0 comments on commit 917262c

Please sign in to comment.