-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[HttpStress] [SslStress] Run stress tests nightly against staging branches #113432
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR updates the nightly stress test pipelines to ensure they always run and to include staging branches.
- Added "always: true" to force nightly runs irrespective of recent commits.
- Included "release/*-staging" branch pattern in both SSL and HTTP stress test pipelines.
Reviewed Changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
File | Description |
---|---|
eng/pipelines/libraries/stress/ssl.yml | Added "always: true" and new branch inclusion for staging branches. |
eng/pipelines/libraries/stress/http.yml | Added "always: true" and new branch inclusion for staging branches. |
Tagging subscribers to this area: @dotnet/runtime-infrastructure |
/azp run runtime-libraries stress-http |
/azp run runtime-libraries stress-ssl |
Azure Pipelines successfully started running 1 pipeline(s). |
1 similar comment
Azure Pipelines successfully started running 1 pipeline(s). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's hope globbing works after this is merged. 🤞
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
/backport to release/9.0-staging |
Started backporting to release/9.0-staging: https://github.com/dotnet/runtime/actions/runs/13839087501 |
/backport to release/8.0-staging |
Started backporting to release/8.0-staging: https://github.com/dotnet/runtime/actions/runs/13839091208 |
@antonfirsov backporting to "release/8.0-staging" failed, the patch most likely resulted in conflicts: $ git am --3way --empty=keep --ignore-whitespace --keep-non-patch changes.patch
Applying: run stress tests nightly against staging branches
Using index info to reconstruct a base tree...
M eng/pipelines/libraries/stress/http.yml
M eng/pipelines/libraries/stress/ssl.yml
Falling back to patching base and 3-way merge...
Auto-merging eng/pipelines/libraries/stress/ssl.yml
CONFLICT (content): Merge conflict in eng/pipelines/libraries/stress/ssl.yml
Auto-merging eng/pipelines/libraries/stress/http.yml
CONFLICT (content): Merge conflict in eng/pipelines/libraries/stress/http.yml
error: Failed to merge in the changes.
hint: Use 'git am --show-current-patch=diff' to see the failed patch
hint: When you have resolved this problem, run "git am --continue".
hint: If you prefer to skip this patch, run "git am --skip" instead.
hint: To restore the original branch and stop patching, run "git am --abort".
hint: Disable this message with "git config set advice.mergeConflict false"
Patch failed at 0001 run stress tests nightly against staging branches
Error: The process '/usr/bin/git' failed with exit code 128 Please backport manually! |
* backport #113432 (#113479) Backport of #113432 to release/8.0-staging Contributes to #113372. * Update dependencies from https://github.com/dotnet/arcade build 20250314.5 Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Archives , Microsoft.DotNet.Build.Tasks.Feed , Microsoft.DotNet.Build.Tasks.Installers , Microsoft.DotNet.Build.Tasks.Packaging , Microsoft.DotNet.Build.Tasks.TargetFramework , Microsoft.DotNet.Build.Tasks.Templating , Microsoft.DotNet.Build.Tasks.Workloads , Microsoft.DotNet.CodeAnalysis , Microsoft.DotNet.GenAPI , Microsoft.DotNet.GenFacades , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.PackageTesting , Microsoft.DotNet.RemoteExecutor , Microsoft.DotNet.SharedFramework.Sdk , Microsoft.DotNet.VersionTools.Tasks , Microsoft.DotNet.XUnitConsoleRunner , Microsoft.DotNet.XUnitExtensions From Version 8.0.0-beta.25114.5 -> To Version 8.0.0-beta.25164.5 * Update wasm test SDK --------- Co-authored-by: Anton Firszov <[email protected]> Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com> Co-authored-by: vseanreesermsft <[email protected]> Co-authored-by: Juan Sebastian Hoyos Ayala <[email protected]>
This PR is the first step to address #113372:
always: true
should ensure that the nightly run will happen even if there were no recent commitsThe PR should be backported to 8.0 and 9.0 staging branches to take effect.
Contributes to #113372