Skip to content

Commit

Permalink
I think trailing whitespace is breaking the codebuild job. (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanHenson authored Dec 2, 2019
1 parent ca212bf commit 7b39761
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
4 changes: 2 additions & 2 deletions codebuild/cd/manylinux1-tee.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ phases:
- cp -r $CODEBUILD_SRC_DIR_manylinux1_x86_64/dist/* dist/
- cp -r $CODEBUILD_SRC_DIR_manylinux1_x86/dist/* dist/
- cp -r $CODEBUILD_SRC_DIR_manylinux2014_arm/* dist/
- cp -r $CODEBUILD_SRC_DIR_manylinux2014_x86_64/* dist/
- cp -r $CODEBUILD_SRC_DIR_manylinux2014_x86_64/* dist/
post_build:
commands:
- echo Build completed on `date`

artifacts:
files:
- 'dist/*'
- 'dist/*'
3 changes: 3 additions & 0 deletions continuous-delivery/build-wheels-manylinux2014-arm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,8 @@ auditwheel repair --plat manylinux2014_aarch64 dist/awscrt-*cp37*.whl
/usr/local/bin/python3.8 setup.py sdist bdist_wheel
auditwheel repair --plat manylinux2014_aarch64 dist/awscrt-*cp38*.whl

rm dist/*.whl
cp -r wheelhouse/* dist/

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

3 changes: 3 additions & 0 deletions continuous-delivery/build-wheels-manylinux2014-x86_64.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,8 @@ auditwheel repair --plat manylinux2014_x86_64 dist/awscrt-*cp37*.whl
/usr/local/bin/python3.8 setup.py sdist bdist_wheel
auditwheel repair --plat manylinux2014_x86_64 dist/awscrt-*cp38*.whl

rm dist/*.whl
cp -r wheelhouse/* dist/

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

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ def awscrt_ext():

setuptools.setup(
name="awscrt",
version="0.5.3",
version="0.5.4",
author="Amazon Web Services, Inc",
author_email="[email protected]",
description="A common runtime for AWS Python projects",
Expand Down

0 comments on commit 7b39761

Please sign in to comment.