-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switched deployment scripts to use release format tags instead of… (#54)
* Switched deployment scripts to use any release format tags instead of annotated tags on master * Added aws-c-compression to manifest * Disable caching on pip installs
- Loading branch information
Justin Boswell
authored
Jun 19, 2019
1 parent
98f0d37
commit 58d35c7
Showing
7 changed files
with
25 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
#!/bin/bash | ||
set -e | ||
CURRENT_TAG_VERSION=$(git describe --abbrev=0) | ||
python3 -m pip install -i https://testpypi.python.org/simple --user awscrt==$CURRENT_TAG_VERSION | ||
set -ex | ||
CURRENT_TAG_VERSION=$(git describe --tags | cut -f2 -dv) | ||
python3 -m pip install --no-cache-dir -i https://testpypi.python.org/simple --user awscrt==$CURRENT_TAG_VERSION | ||
python3 continuous-delivery/test-pip-install.py | ||
|
||
python -m pip install -i https://testpypi.python.org/simple --user awscrt==$CURRENT_TAG_VERSION | ||
python -m pip install --no-cache-dir -i https://testpypi.python.org/simple --user awscrt==$CURRENT_TAG_VERSION | ||
python continuous-delivery/test-pip-install.py | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -216,7 +216,7 @@ def get_from_env(key): | |
|
||
setuptools.setup( | ||
name="awscrt", | ||
version="v0.2.18", | ||
version="v0.2.22", | ||
author="Amazon Web Services, Inc", | ||
author_email="[email protected]", | ||
description="A common runtime for AWS Python projects", | ||
|