mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-11 22:51:28 +00:00
test(ci): align Claude Code Bedrock job with existing AWS pattern
Match existing Bedrock CI conventions by pinning AWS region to us-east-1 in the Claude Code Bedrock E2E job, removing the extra region env guard, and allowing optional AWS session token passthrough. Made-with: Cursor
This commit is contained in:
parent
be97da44fa
commit
3eb2b9be24
1 changed files with 2 additions and 2 deletions
|
|
@ -2104,7 +2104,6 @@ jobs:
|
|||
LITELLM_MASTER_KEY="${LITELLM_MASTER_KEY:-sk-1234}"
|
||||
: "${AWS_ACCESS_KEY_ID:?Set AWS_ACCESS_KEY_ID in CircleCI project env vars.}"
|
||||
: "${AWS_SECRET_ACCESS_KEY:?Set AWS_SECRET_ACCESS_KEY in CircleCI project env vars.}"
|
||||
: "${AWS_REGION_NAME:?Set AWS_REGION_NAME in CircleCI project env vars.}"
|
||||
set +e
|
||||
LITELLM_IMAGE=litellm-docker-database:ci \
|
||||
CLAUDE_CODE_IMAGE=claude-code-client:ci \
|
||||
|
|
@ -2116,7 +2115,8 @@ jobs:
|
|||
LITELLM_MASTER_KEY="${LITELLM_MASTER_KEY}" \
|
||||
AWS_ACCESS_KEY_ID="${AWS_ACCESS_KEY_ID}" \
|
||||
AWS_SECRET_ACCESS_KEY="${AWS_SECRET_ACCESS_KEY}" \
|
||||
AWS_REGION_NAME="${AWS_REGION_NAME}" \
|
||||
AWS_REGION_NAME="us-east-1" \
|
||||
AWS_SESSION_TOKEN="${AWS_SESSION_TOKEN:-}" \
|
||||
tests/proxy_e2e_anthropic_messages_tests/claude_code/run_claude_code_docker_test.sh
|
||||
status=$?
|
||||
if [ "$status" -eq 0 ]; then
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue