Skip to content

Commit 79b123d

Browse files
chore(ci): remove Busy Engineer's Workshop from release validation
1 parent d0cb680 commit 79b123d

1 file changed

Lines changed: 7 additions & 6 deletions

File tree

codebuild/release/validate.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,22 @@
11
version: 0.2
2-
32
phases:
43
install:
4+
commands:
5+
- pip install "tox < 4.0"
56
runtime-versions:
67
python: latest
8+
pre_build:
79
commands:
8-
- python -m pip install --upgrade pip
10+
- pyenv install --skip-existing 3.8.12
11+
- pyenv local 3.8.12
12+
- pip install "tox < 4.0"
913
build:
1014
commands:
1115
- NUM_RETRIES=3
1216
- |
1317
while [ $NUM_RETRIES -gt 0 ]
1418
do
15-
pip install "aws-encryption-sdk==$VERSION" \
16-
&& python -c "import aws_encryption_sdk; \
17-
from aws_encryption_sdk import StrictAwsKmsMasterKeyProvider; \
18-
print('aws-encryption-sdk', aws_encryption_sdk.__version__, 'installed and imports cleanly')"
19+
pip install "aws-encryption-sdk==$VERSION" && python -c "import aws_encryption_sdk; from aws_encryption_sdk import StrictAwsKmsMasterKeyProvider"
1920
if [ $? -eq 0 ]; then
2021
break
2122
fi

0 commit comments

Comments
 (0)