Integrate deployment E2E tests into CI workflow#15468
Open
mitchdenny wants to merge 7 commits intomainfrom
Open
Integrate deployment E2E tests into CI workflow#15468mitchdenny wants to merge 7 commits intomainfrom
mitchdenny wants to merge 7 commits intomainfrom
Conversation
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Member
Author
|
/deployment-test |
Contributor
|
🚀 Dogfood this PR with:
curl -fsSL https://raw.githubusercontent.com/microsoft/aspire/main/eng/scripts/get-aspire-cli-pr.sh | bash -s -- 15468Or
iex "& { $(irm https://raw.githubusercontent.com/microsoft/aspire/main/eng/scripts/get-aspire-cli-pr.ps1) } 15468" |
Contributor
|
🚀 Deployment tests starting on PR #15468... This will deploy to real Azure infrastructure. Results will be posted here when complete. |
Contributor
There was a problem hiding this comment.
Pull request overview
This PR verifies that the /deployment-test slash command still functions after the repository moved from dotnet/aspire to microsoft/aspire by making a whitespace-only change.
Changes:
- Add a trailing newline at the end of
README.md.
…flow Reusable workflows called via workflow_call don't automatically receive the caller's secrets. The deployment-testing environment secrets (AZURE_DEPLOYMENT_TEST_CLIENT_ID, TENANT_ID, SUBSCRIPTION_ID) need secrets:inherit to be accessible. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
The enumerate-tests action uploads logs-enumerate-tests-Linux, but both the main test setup and deployment test enumerate jobs use it in the same workflow run. Add artifactSuffix input to disambiguate artifact names. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
|
🎬 CLI E2E Test Recordings — 52 recordings uploaded (commit View recordings
📹 Recordings uploaded automatically from CI run #23372821660 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Integrates deployment E2E tests into the main CI workflow so they run automatically on every non-fork PR. Also migrates the last remaining old-pattern test to the Hex1bAutomator approach, and adds deployment test recording comments.
Changes
CI Integration:
deployment-e2e-tests.ymlreusable workflow with enumerate → build → deploy-test matrix fan-out usingenvironment: deployment-testingfor OIDC Azure authci.ymlwithdeployment_testsjob that calls the reusable workflow, with fork detection (head.repo.full_name == repository) and skip logic (docs-only changes)resultsjob to include deployment test results in the aggregation gatedeployment-tests.ymlto call the reusable workflow (keeps nightly schedule +create_issue_on_failure)deployment-test-command.yml— the/deployment-testslash command is replaced by automatic CI integrationRecording Comments:
cli-e2e-recording-comment.ymlwith a second job (add-deployment-recording-comment) that posts deployment test recordings as a separate PR comment with<!-- deployment-e2e-recordings -->markerTest Migration:
AcaManagedRedisDeploymentTestsfromHex1bTerminalInputSequenceBuilder(fluent builder) toHex1bTerminalAutomator(async/await)DeploymentE2ETestHelpers.csEnvironment Requirement
deployment-testingGitHub environment must allow deployment from PR branches (not justmain/release/**). Verify environment protection rules before merging.Testing