Skip to content
Merged
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
5ae98ab
fix: use direct artifact filenames without commit-sha in SageMaker wo…
Dec 5, 2025
3a3ef43
fix: use direct artifact filenames without commit-sha in SageMaker wo…
Dec 5, 2025
379d727
Merge branch 'sagemaker-e2e-test' of https://github.com/aws/code-edit…
Dec 5, 2025
2065eae
Merge branch 'sagemaker-e2e-test' of https://github.com/aws/code-edit…
Dec 5, 2025
e11c969
Merge branch 'sagemaker-e2e-test' of https://github.com/aws/code-edit…
Dec 5, 2025
6f19bb2
Fix: Fail workflow when smoke tests fail
Dec 5, 2025
a7ddf00
Merge branch 'main' into sagemaker-e2e-test
Dec 5, 2025
26459fd
fix: fail workflow when smoke tests fail
Dec 5, 2025
b10faac
fix: fail workflow when smoke tests fail
Dec 5, 2025
b6afad4
Merge branch 'sagemaker-e2e-test' of https://github.com/aws/code-edit…
Dec 5, 2025
8db89c9
fix: use direct artifact filenames without commit-sha in SageMaker wo…
Dec 5, 2025
4125a2f
Fix: Fail workflow when smoke tests fail
Dec 5, 2025
f80cc3e
fix: fail workflow when smoke tests fail
Dec 5, 2025
7375d32
Merge branch 'sagemaker-e2e-test' of https://github.com/aws/code-edit…
Dec 8, 2025
c92adfb
improve SageMaker smoke test workflow
Dec 8, 2025
17ece45
improve SageMaker smoke test workflow
Dec 8, 2025
6ffc91b
Merge branch 'sagemaker-e2e-test' of https://github.com/aws/code-edit…
Dec 8, 2025
f894c93
Merge branch 'sagemaker-e2e-test' of https://github.com/aws/code-edit…
Dec 8, 2025
35e430b
make it faster for testing
Dec 8, 2025
fe5cd67
Merge branch 'sagemaker-e2e-test' of https://github.com/aws/code-edit…
Dec 8, 2025
d6f0bf4
13
Dec 8, 2025
e40c996
Merge branch 'sagemaker-e2e-test' of https://github.com/aws/code-edit…
Dec 8, 2025
a07538b
Merge branch 'sagemaker-e2e-test' of https://github.com/aws/code-edit…
Dec 8, 2025
5e301e0
Merge branch 'sagemaker-e2e-test' of https://github.com/aws/code-edit…
Dec 8, 2025
929d1a2
Merge branch 'sagemaker-e2e-test' of https://github.com/aws/code-edit…
Dec 8, 2025
56d33d7
update
Dec 8, 2025
64b4c69
update
Dec 8, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions .github/workflows/smoke-tests-sagemaker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ jobs:
exit 1
fi

DATAZONE_URL="https://${DATAZONE_DOMAIN_ID}.sagemaker.us-east-1.on.aws/projects/${PROJECT_ID}/compute?type=spaces"
DATAZONE_URL="https://${DATAZONE_DOMAIN_ID}.sagemaker.${AWS_REGION}.on.aws/projects/${PROJECT_ID}/compute?type=spaces"

# Apply E2E testing patches

Expand All @@ -358,8 +358,16 @@ jobs:
cd smoke
npm run compile
npx playwright install
SSO_USERNAME="$SSO_USERNAME" SSO_PASSWORD="$SSO_PASSWORD" DATAZONE_URL="$DATAZONE_URL" SPACE_NAME="$SAGEMAKER_SPACE_NAME" VSCODE_REMOTE_SERVER_PATH="sagemaker" npm run mocha -- --web --headless


SSO_USERNAME="$SSO_USERNAME" SSO_PASSWORD="$SSO_PASSWORD" DATAZONE_URL="$DATAZONE_URL" SPACE_NAME="$SAGEMAKER_SPACE_NAME" VSCODE_REMOTE_SERVER_PATH="sagemaker" npm run mocha -- --web --headless 2>&1 | tee test_output.log

if grep -q "failing" test_output.log; then
echo "Smoke tests failed - detected failing tests in output"
exit 1
fi

echo "All smoke tests passed successfully"

- name: Clean up SageMaker resources
if: always()
run: |
Expand Down