We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20c15af commit 8860ee3Copy full SHA for 8860ee3
.circleci/config.yml
@@ -1,6 +1,7 @@
1
version: 2.1
2
orbs:
3
python: circleci/python@2.1.1
4
+ aws-cli: circleci/aws-cli@3.1.5
5
6
workflows:
7
ci:
@@ -175,13 +176,14 @@ jobs:
175
176
pip install -r model-engine/requirements.txt
177
- install_client
178
- install_server
179
+ - aws-cli/setup:
180
+ role-arn: ${CIRCLECI_ROLE_ARN}
181
+ aws-region: AWS_REGION
182
- run:
183
name: Run integration tests
184
command: |
185
pushd $HOME/project
186
kubectl port-forward svc/model-engine 5001:80 &
- export AWS_ACCESS_KEY_ID=$CIRCLECI_AWS_ACCESS_KEY
- export AWS_SECRET_ACCESS_KEY=$CIRCLECI_AWS_SECRET_KEY
187
export GIT_TAG=$CIRCLE_SHA1
188
pytest integration_tests
189
0 commit comments