Skip to content

testing empty release test#29864

Open
thomas-temby wants to merge 3 commits into
mainfrom
thomas-temby/temp-branch
Open

testing empty release test#29864
thomas-temby wants to merge 3 commits into
mainfrom
thomas-temby/temp-branch

Conversation

@thomas-temby

Copy link
Copy Markdown
Contributor

Description

Mandatory Checklist

  • SHOULD update ChangeLog.md file(s) appropriately
    • Update src/{{SERVICE}}/{{SERVICE}}/ChangeLog.md.
      • A snippet outlining the change(s) made in the PR should be written under the ## Upcoming Release header in the past tense.
    • Should not change ChangeLog.md if no new release is required, such as fixing test case only.
  • SHOULD regenerate markdown help files if there is cmdlet API change. Instruction
  • SHOULD have proper test coverage for changes in pull request.
  • SHOULD NOT adjust version of module manually in pull request

Copilot AI review requested due to automatic review settings July 21, 2026 02:06
@thomas-temby thomas-temby added the Do Not Close 🚫 Can be used for PR that might by closed otherwise in Repo Cleanup. label Jul 21, 2026
@azure-pipelines

Copy link
Copy Markdown
Contributor
Azure Pipelines:
Successfully started running 1 pipeline(s).
There may be pipelines that require an authorized user to comment /azp run to run.

@github-actions

Copy link
Copy Markdown

‼️ DO NOT MERGE THIS PR ‼️
This PR was labeled "Do Not Merge" because it contains code change that cannot be merged. Please contact the reviewer for more information.

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

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 modifies the Azure Pipelines release-test definition by removing the Windows and Linux smoke-test job templates, leaving only the job that checks for the latest PowerShell version.

Changes:

  • Removed the Win/Linux util/smoke-test-steps.yml template job entries from release-test.yml.
  • Kept the CheckLatestPowerShellVersion job as the only active job in the pipeline.
Comments suppressed due to low confidence (1)

.azure-pipelines/release-test.yml:55

  • Removing all Win/Linux smoke-test template jobs leaves this pipeline only checking the latest PowerShell version, so it no longer performs the release smoke testing implied by release-test.yml. This significantly reduces release validation coverage; if this was only for an experiment, it should not be merged as-is. Consider restoring the removed smoke-test jobs, or guarding them behind a parameter (defaulting to enabled) so release validation remains intact.
jobs:
- job: CheckLatestPowerShellVersion
  displayName: Check for latest PowerShell version
  pool:
    name: ${{ variables.linuxAgentPoolName }}
  steps:
  - task: PowerShell@2
    displayName: Check for latest PowerShell version
    inputs:
      pwsh: true
      targetType: filePath
      filePath: ./tools/TestFx/Live/CheckLatestPowerShellVersion.ps1

@azure-client-tools-agent

Copy link
Copy Markdown

🤖 Auto-trigger: queued 2 pipeline(s) for commit 9b00f317bc75148c73d00fabca8f78c1b66b92d7 at 2026-07-21 02:26:04 UTC: azure-powershell - powershell-core, azure-powershell - windows-powershell

Copilot AI review requested due to automatic review settings July 21, 2026 06:06
@azure-client-tools-agent

Copy link
Copy Markdown

🤖 Auto-trigger: queued 2 pipeline(s) for commit b48fef1fe0f6fb1c06c95230c3905f15ee301729 at 2026-07-21 06:07:46 UTC: azure-powershell - powershell-core, azure-powershell - windows-powershell

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.

Comments suppressed due to low confidence (1)

.azure-pipelines/release-test.yml:55

  • This PR appears to remove all Windows/Linux smoke test jobs from the release-test pipeline, leaving only the version-check job. That effectively disables the release validation this pipeline is meant to provide and can allow regressions to ship undetected. If the intent is to temporarily reduce coverage, consider gating smoke tests behind a parameter/variable or commenting them out (like the MacOS entries) rather than deleting them; otherwise, please restore the removed smoke test templates.
jobs:
- job: CheckLatestPowerShellVersion
  displayName: Check for latest PowerShell version
  pool:
    name: ${{ variables.linuxAgentPoolName }}
  steps:
  - task: PowerShell@2
    displayName: Check for latest PowerShell version
    inputs:
      pwsh: true
      targetType: filePath
      filePath: ./tools/TestFx/Live/CheckLatestPowerShellVersion.ps1

Comment thread temp.txt
@@ -0,0 +1 @@
Temp change
Copilot AI review requested due to automatic review settings July 21, 2026 06:31

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.

Comments suppressed due to low confidence (1)

temp.txt:2

  • temp.txt is introduced but appears unused (no references found in the repo). Committing a temporary/placeholder file adds noise and can confuse future contributors; please remove it or replace it with a file that’s part of the intended feature/change.
Temp change 
More changes

Comment on lines 44 to 46
jobs:
- template: util/smoke-test-steps.yml
parameters:
name: 'Win_PS5_1_14_SmokeTest'
agentPoolName: ${{ variables.winAgentPoolName }}
psVersion: ${{ parameters.win_ps }}
dotnetVersion: ${{ parameters.dotnet_sdk_8 }}

- template: util/smoke-test-steps.yml
parameters:
name: 'Win_PS7_4_X_SmokeTest'
agentPoolName: ${{ variables.winAgentPoolName }}
psVersion: ${{ parameters.ps7_4 }}
dotnetVersion: ${{ parameters.dotnet_sdk_8 }}

- template: util/smoke-test-steps.yml
parameters:
name: 'Win_PS7_5_X_SmokeTest'
agentPoolName: ${{ variables.winAgentPoolName }}
psVersion: ${{ parameters.ps7_5 }}
dotnetVersion: ${{ parameters.dotnet_sdk_9 }}

- template: util/smoke-test-steps.yml
parameters:
name: 'Win_PS7_6_X_SmokeTest'
agentPoolName: ${{ variables.winAgentPoolName }}
psVersion: ${{ parameters.ps7_6 }}
dotnetVersion: ${{ parameters.dotnet_sdk_10 }}

- template: util/smoke-test-steps.yml
parameters:
name: 'Win_Preview_PS_SmokeTest'
agentPoolName: ${{ variables.winAgentPoolName }}
psVersion: ${{ parameters.preview_ps }}
dotnetVersion: ${{ parameters.dotnet_sdk_9 }}

- template: util/smoke-test-steps.yml
parameters:
name: 'Linux_PS7_4_X_SmokeTest'
agentPoolName: ${{ variables.linuxAgentPoolName }}
psVersion: ${{ parameters.ps7_4 }}
dotnetVersion: ${{ parameters.dotnet_sdk_8 }}

- template: util/smoke-test-steps.yml
parameters:
name: 'Linux_PS7_5_X_SmokeTest'
agentPoolName: ${{ variables.linuxAgentPoolName }}
psVersion: ${{ parameters.ps7_5 }}
dotnetVersion: ${{ parameters.dotnet_sdk_9 }}

- template: util/smoke-test-steps.yml
parameters:
name: 'Linux_PS7_6_X_SmokeTest'
agentPoolName: ${{ variables.linuxAgentPoolName }}
psVersion: ${{ parameters.ps7_6 }}
dotnetVersion: ${{ parameters.dotnet_sdk_10 }}

- template: util/smoke-test-steps.yml
parameters:
name: 'Linux_Preview_PS_SmokeTest'
agentPoolName: ${{ variables.linuxAgentPoolName }}
psVersion: ${{ parameters.preview_ps }}
dotnetVersion: ${{ parameters.dotnet_sdk_9 }}

- job: CheckLatestPowerShellVersion
displayName: Check for latest PowerShell version
@azure-client-tools-agent

Copy link
Copy Markdown

/azp run azure-powershell - powershell-core

@azure-client-tools-agent

Copy link
Copy Markdown

/azp run azure-powershell - windows-powershell

@azure-pipelines

Copy link
Copy Markdown
Contributor
Commenter does not have sufficient privileges for PR 29864 in repo Azure/azure-powershell

1 similar comment
@azure-pipelines

Copy link
Copy Markdown
Contributor
Commenter does not have sufficient privileges for PR 29864 in repo Azure/azure-powershell

@thomas-temby

Copy link
Copy Markdown
Contributor Author

/azp run

@azure-pipelines

Copy link
Copy Markdown
Contributor
Azure Pipelines:
Successfully started running 3 pipeline(s).

@Azure Azure deleted a comment from azure-client-tools-agent Bot Jul 21, 2026
@azure-client-tools-agent

Copy link
Copy Markdown

🤖 Auto-trigger: queued 2 pipeline(s) for commit 7f2228dca48fb47b6708533cf05d8bd835f54c80 at 2026-07-21 06:42:58 UTC: azure-powershell - powershell-core, azure-powershell - windows-powershell

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Do Not Close 🚫 Can be used for PR that might by closed otherwise in Repo Cleanup. Do Not Merge 🚫

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants