Skip to content

Commit 27ec852

Browse files
author
Taniya Mathur
committed
codebuild test
1 parent 8de7139 commit 27ec852

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ integration_tests:
167167
echo -e "\033[1;34m🔗 View logs: ${CI_JOB_URL}/artifacts/external_file/codebuild_logs.txt\033[0m"
168168
# Extract and show deployment summary (AI or manual)
169169
echo ""
170-
SUMMARY=$(echo "$FULL_LOGS" | sed -n '/🤖 Generating deployment summary with Bedrock.../,$p' | sed 's/^\t*//' || true)
170+
SUMMARY=$(echo "$FULL_LOGS" | sed -n '/🤖 Generating deployment summary with Bedrock.../,$p' | sed 's/^\t*//' | grep -v '\[Container\]' | grep -v 'Phase complete:' | grep -v 'Phase context status code:' | grep -v 'Entering phase' || true)
171171
172172
if [ -n "$SUMMARY" ]; then
173173
echo "┌─────────────────────────────────────────────────────────────────────────┐"

scripts/sdlc/cfn/codepipeline-s3.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ Resources:
198198
python: 3.12
199199
commands:
200200
- n 20 && node --version || { echo "Node setup failed"; exit 1; }
201-
- npm install -g npm@latest || { echo "npm update failed"; exit 1; }
201+
- npm install -g npm@10.9.3 || { echo "npm downgrade failed"; exit 1; }
202202
- export IDP_ADMIN_EMAIL=$(aws s3api head-object --bucket genaiic-sdlc-sourcecode-${AWS_ACCOUNT_ID:-020432867916}-${AWS_DEFAULT_REGION:-us-east-1} --key deploy/code.zip --query 'Metadata."gitlab-user-email"' --output text 2>/dev/null || echo "")
203203
- cd idp_cli && pip install -e . && cd .. || { echo "IDP CLI installation failed"; exit 1; }
204204
- pip install rich || echo "Rich installation failed, using fallback formatting"

0 commit comments

Comments
 (0)