Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions codebuild/cd/manylinux1-tee.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,12 @@ phases:
build:
commands:
- echo Build started on `date`
- mkdir dist
- 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/
- mkdir $CODEBUILD_SRC_DIR/dist
- cp -r $CODEBUILD_SRC_DIR_manylinux1_x86_64/dist/* $CODEBUILD_SRC_DIR/dist/
- cp -r $CODEBUILD_SRC_DIR_manylinux1_x86/dist/* $CODEBUILD_SRC_DIR/dist/
- cp -r $CODEBUILD_SRC_DIR_manylinux2014_arm/* $CODEBUILD_SRC_DIR/dist/
- cp -r $CODEBUILD_SRC_DIR_manylinux2014_x86_64/* $CODEBUILD_SRC_DIR/dist/
- ls $CODEBUILD_SRC_DIR/dist/
post_build:
commands:
- echo Build completed on `date`
Expand Down
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.4",
version="0.5.5",
author="Amazon Web Services, Inc",
author_email="aws-sdk-common-runtime@amazon.com",
description="A common runtime for AWS Python projects",
Expand Down